Site logo

Archived topic

Customize main menu icons in mobile

19 replies · Started by Pedro Chincoa on November 14, 2017

Viewing posts 16–20 of 20

Let's try using the snippet only on the front page:
add_action( 'wp_enqueue_scripts', 'generate_dequeue_mobile', 100 );

function generate_dequeue_mobile() {
   if ( is_front_page() ) {
       wp_dequeue_style( 'generate-mobile-style' );
   }
}

Yes, now it works! Thanks Leo for your patience!

No problem! Thanks for your patience too!

This archived topic is closed to new replies.