How to Disable and Redirect Author Pag...
Learn how to disable WordPress author pages and redirect them to your site’s ho...

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





