• Resolved capegreg

    (@capegreg)


    The menu icon only appears when I am logged into WP; otherwise, it turns square. I am using a child theme. All menu config is through the Mega menu UI.

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

    (@megamenu)

    Hi capegreg,

    It is likely to be an optimisation plugin. Do you have of those installed? Make sure any “Disable Dashicons” options are unchecked (i.e., you want to have DashIcons enabled on your site).

    Thread Starter capegreg

    (@capegreg)

    That was it. I removed this and the icons are back. Thank you!

    function wpdocs_dequeue_dashicon() {
    if (current_user_can( ‘update_core’ )) {
    return;
    }
    wp_deregister_style(‘dashicons’);
    }
    add_action( ‘wp_enqueue_scripts’, ‘wpdocs_dequeue_dashicon’ );

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