• Resolved Nathan Adams

    (@nathan-adams)


    I’m trying to disable the stylesheet that is loaded by Edwiser Bridge (eb-public.css) as I have my own styling on the site, and the EB stylesheet is riddled with !important rules.

    I’ve tried adding wp_dequeue_style('edwiserbridge'); to my functions.php file, but it doesn’t seem to be having any effect.

    Any ideas on why wp_dequeue_style doesn’t work?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author WisdmLabs

    (@wisdmlabs)

    Hi Nathan,

    To achieve what you are looking for, please add the following piece of code in the theme’s function.php file:

    add_action(‘wp_enqueue_scripts’, function() {
    wp_dequeue_style(‘edwiserbridge’);
    },10);

    I hope the above was helpful. If you have any queries, then feel free to contact us at [email protected]

    Thanks & Regards,
    WisdmLabs Team

    Thread Starter Nathan Adams

    (@nathan-adams)

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Disable Edwiser Bridge style sheet’ is closed to new replies.