How to Disable Emojis in WordPress
Learn how to disable emojis in WordPress with this simple guide. Improve your site...

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





