How to Customize Excerpts for Password...
Optimize your WordPress site! This snippet customizes excerpts for password-protected...

WPCodeBox
317

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
);





