Reply 189820 to: Expandable Section

Avatar: Rose Tyler
Rose Tyler
Support staff
March 30, 2018 at 13:32

Hello,

Please add this code in functions.php file of child theme:

function et_dequeue_ult_styles() {
    $force_ultimate_styles = etheme_get_option('force_addons_css');
    if ($force_ultimate_styles ) {
        wp_dequeue_style( 'style_ultimate_expsection' );
        wp_deregister_style( 'style_ultimate_expsection' );
    }
}
add_action( 'wp_print_styles', 'et_dequeue_ult_styles' );

function et_dequeue_ult_scripts() {
    $force_ultimate_styles = etheme_get_option('force_addons_css');
    if ( $force_ultimate_styles ) {
        wp_dequeue_script( 'jquery_ultimate_expsection' );
        wp_deregister_script( 'jquery_ultimate_expsection' );
    }
}
add_action( 'wp_print_scripts', 'et_dequeue_ult_scripts' );

Regards

Go To The Whole Conversation In Topic
We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.