Removal of plugin [will settings remain?]

Author Posts

netguru

Hi,

After styling a theme, if the microthemer plugin is removed, will the settings stay?


Sebastian

Hello,

If you deactivate or completely uninstall Microthemer the settings would disappear. If you’d like to keep them you can manually add the following code to your Theme’s functions.php file:

/* Manually add Microthemer stylesheet */

function add_microthemer_css() {

	wp_register_style( 'microthemer', WP_CONTENT_URL . '/micro-themes/active-styles.css');

	wp_enqueue_style('microthemer');

}

add_action('wp_enqueue_scripts', 'add_microthemer_css');

I hope that’s useful. Let me know if you need more help.

Warmest wishes,

Monika

You must login or register to reply to this topic.