I've checked and I can't see any options to export FlexSlider by using Features, so I'm assuming it's not there.
Can we add it?
Thanks.

Related: #1364726: Make FlexSlider Option Sets Exportable via CTools for Features

Comments

minorOffense’s picture

Status: Active » Closed (works as designed)

They are already. We use ctools exportable a for storing config. Look for Flexslider Optionset in features.

Offlein’s picture

Are .. are we sure this is actually true? I have a fresh install and I can't see it in there.

Offlein’s picture

Issue summary: View changes
Status: Closed (works as designed) » Active
neetu morwani’s picture

Even I came across this. I am unable to feature flexslider configuration settings. The form which displays the configuration is not system setting form, Therefore Configuration cannot fall under Strongarm variables.
I did not find Flexslider settings under Features.

samhassell’s picture

Yep can confirm there is something going wrong here. Option sets are not available in the features UI.

*edit* you can't export the default optionset. Cloning and renaming the default will make it exportable.

suchdavid’s picture

Hi,
I figured out, that you need to create a new configuration setting on admin/config/media/flexslider page. If there is only the default you cannot export it in feature, but after you have created a new one (e. .g by cloning the default), it will appear in features.

alx_benjamin’s picture

I can export into feature and can see options saved in the feature file
but when reverting it either deletes everything from database or does nothing.

So I cannot restore options from created feature.

This could also be ctools issue.

Would be nice to solve it asap.

Thank you

minorOffense’s picture

Can you confirm the version of Features you're using? Is it the 2.x version of Features?

alx_benjamin’s picture

Tested with features version 7.x-2.6 on drupal 7.38 and drupal dev

liquidcms’s picture

i'm using:

Features 7.x-2.10
Features Extra 7.x-1.0
Flex Slider 7.x-2.0-rc1+21-dev (2016-Aug-05)

and still nothing listed in Features for anything related to Flexslider except one var in Strongarm (flexslider_version)

lamp5’s picture

Status: Active » Closed (works as designed)

You should create new optionset, default optionset is not listed. If you want to change your code in default optionset you should do it programmatically something like this:

  $setting = flexslider_optionset_load('default');
  $setting->options['prevText'] = '';
  $setting->options['nextText'] = '';
  $setting->options['animation'] = 'slide';
  $setting->options['controlNav'] = 0;
  flexslider_optionset_save($setting);