Title: Change Features Control Options Defaults
Last modified: August 30, 2016

---

# Change Features Control Options Defaults

 *  Resolved [rodrigocalix](https://wordpress.org/support/users/rodrigocalix/)
 * (@rodrigocalix)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/change-features-control-options-defaults/)
 * I’m creating a theme for ThemeForest and i want to change the defaults of the
   Features Control Options, when be installed with my theme, is there any code 
   that let me change some defaults to false, or remove modules? like Slider(Revolution),
   and any other module that my theme will not use?
 * [https://wordpress.org/plugins/live-composer-page-builder/](https://wordpress.org/plugins/live-composer-page-builder/)

Viewing 5 replies - 1 through 5 (of 5 total)

 *  Plugin Author [LiveComposer](https://wordpress.org/support/users/livecomposer/)
 * (@livecomposer)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/change-features-control-options-defaults/#post-6695202)
 * Hi,
 * You could use update_option() WP function, like this:
 *     ```
       $modules_array = array(
       	'DSLC_TP_Thumbnail' => 'disabled',
       	'DSLC_Downloads' => 'disabled',
       );
   
       update_option( 'dslc_plugin_options_features', $modules_array );
       ```
   
 * The array key is the module ID and the value is ‘disabled’ which is the value
   the option gets when the module is disabled/deactivated.
 * But make sure you only run it once ( for example you can hook into [after_switch_theme](https://codex.wordpress.org/Plugin_API/Action_Reference/after_switch_theme)).
 * Regards,
    Slobodan
 *  Thread Starter [rodrigocalix](https://wordpress.org/support/users/rodrigocalix/)
 * (@rodrigocalix)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/change-features-control-options-defaults/#post-6695205)
 * Is there a way to disable the templates that already come with Live Composer 
   too?
 *  Plugin Author [LiveComposer](https://wordpress.org/support/users/livecomposer/)
 * (@livecomposer)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/change-features-control-options-defaults/#post-6695241)
 * Hi,
 * Sure thing, give this tutorial a check [http://livecomposerplugin.com/docs/add-remove-lc-templates/](http://livecomposerplugin.com/docs/add-remove-lc-templates/)
 * Regards,
    Slobodan
 *  Thread Starter [rodrigocalix](https://wordpress.org/support/users/rodrigocalix/)
 * (@rodrigocalix)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/change-features-control-options-defaults/#post-6695267)
 * Thanks a lot for your help!
 *  Plugin Author [LiveComposer](https://wordpress.org/support/users/livecomposer/)
 * (@livecomposer)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/change-features-control-options-defaults/#post-6695271)
 * You’re welcome.
 * Regards,
    Slobodan

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Change Features Control Options Defaults’ is closed to new replies.

 * ![](https://ps.w.org/live-composer-page-builder/assets/icon.svg?rev=1415112)
 * [Live Composer - Free WordPress Website Builder](https://wordpress.org/plugins/live-composer-page-builder/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/live-composer-page-builder/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/live-composer-page-builder/)
 * [Active Topics](https://wordpress.org/support/plugin/live-composer-page-builder/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/live-composer-page-builder/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/live-composer-page-builder/reviews/)

## Tags

 * [module](https://wordpress.org/support/topic-tag/module/)

 * 5 replies
 * 2 participants
 * Last reply from: [LiveComposer](https://wordpress.org/support/users/livecomposer/)
 * Last activity: [10 years, 6 months ago](https://wordpress.org/support/topic/change-features-control-options-defaults/#post-6695271)
 * Status: resolved