How to Add WooCommerce Checkout Field ...
Learn how to easily add WooCommerce checkout field labels inside input boxes for a cl...

WPCodeBox
317

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





