15

How to Hide WooCommerce Subscription Details for Free Packages on MyListing Websites

Powered by WPCodeBox

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

Other Snippets

WPCodeBox is a WordPress Code Snippets Manager that allows you to share your WordPress Code Snippets across your sites.