How to Change the WordPress Login Page...
This snippet allows you to easily change the URL of the logo on your WordPress login ...

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