How to Change Sender Name and Email in...
Learn how to easily change the sender name and email address for outgoing WordPress e...

WPCodeBox
521
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');
});





