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

WPCodeBox
39
This MyListing code snippet helps you hide WooCommerce subscription details for free packages by making the price text transparent. Perfect for MyListing websites using WooCommerce Subscriptions, this snippet ensures a cleaner display for your free offerings.
/**
* Author: MyListing Club
* Author URI: https://mylisting.club
*/
jQuery(document).ready(function($) {
$('span:contains("FREE")').siblings('.subscription-details').css('opacity', '0');
});