How to Hide My Account Listing Actions...
The Hide Actions From My Account Listing Cards code snippet provides additional funct...

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





