35

How to Prevent MyListing From Loading Material Icons and Lightbox on Single Product Pages

Powered by WPCodeBox

When visitors view product pages, clicking on a product thumbnail image may trigger a lightbox. This snippet helps website owners prevent MyListing from loading Material Icons and the lightbox on single product pages.


/**
 * Author: MyListing Club
 * Author URI: https://mylisting.club
 */
 
 add_action(
  "wp_enqueue_scripts",
  function () {
    wp_dequeue_style("mylisting-material-icons");
  },
  99
);

Other Snippets

WPCodeBox is a WordPress Code Snippets Manager that allows you to share your WordPress Code Snippets across your sites.