• Resolved denizci88

    (@denizci88)


    Hello,

    Could you advise me how I can remove Litespeed Cache icon/menu from the admin bar?

    Your reply would be much appreciated. Thank you in advance.

    Best regards

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support qtwrk

    (@qtwrk)

    function remove_litespeed_menu_from_admin_bar() {
        global $wp_admin_bar;
        $wp_admin_bar->remove_menu('litespeed-menu');
    }
    add_action('wp_before_admin_bar_render', 'remove_litespeed_menu_from_admin_bar', 1000); 

    please add this to your theme’s functions.php

    Thread Starter denizci88

    (@denizci88)

    Thank you very much. The issue has been fixed with the code you suggested.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Admin Bar’ is closed to new replies.