How to disable demo mode?
-
Hi there.
I got this function. It was working fine till today:if (!function_exists(‘remove_demo’)){
function remove_demo(){
if (class_exists(‘ReduxFrameworkPlugin’)){
remove_filter(‘plugin_row_meta’, array(ReduxFrameworkPlugin::instance(),’plugin_metalinks’),null,2);
remove_action(‘admin_notices’,array(ReduxFrameworkPlugin::instance(),’admin_notices’));
}
}
}
add_action(‘redux/loaded’,’remove_demo’);Since this is not working now … How can I disable demo and disable demo notice?
Thanks!!!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How to disable demo mode?’ is closed to new replies.