How to Implement a Maintenance Mode wi...
Learn how to implement a maintenance mode in WordPress with a secret code to restrict...

WPCodeBox
542
Enhance your MyListing website’s add a listing flow. This snippet detects package names like “Basic” and changes the selection button text to “Free,” offering more control over your listing packages. Easily adjust the criteria and output text to fit your needs.
/**
* Author: MyListing Club
* Author URI: https://mylisting.club
*/
jQuery(document).ready(function($) {
$('.c27-packages .pricing-item .plan-name:contains("Basic")').siblings('.select-package').find('a').html('Free <i class="mi arrow_forward">')
});





