• Resolved devadam

    (@devadam)


    Hello,

    As soon as I activate the plugin, some of the icons on the top black admin bar disappear (e.g. update, comment icons).

    I had to remove the plugin. Please let me know when this gets resolved. I will be happy to reinstall it.

    Thanks for your efforts.

    http://ww.wp.xz.cn/extend/plugins/bwp-minify/

Viewing 1 replies (of 1 total)
  • add this to functions.php in your theme
    appearance > editor

    add_filter('bwp_minify_style_ignore', 'exclude_my_css');
    
    function exclude_my_css($excluded)
    {
        $excluded = array('admin-bar');
        return $excluded;
    }
Viewing 1 replies (of 1 total)

The topic ‘Missing Icons on the Admin Bar’ is closed to new replies.