Join

Change MyListing Package Selection Button Text

Don't want to mess with code snippets? Request for this to be a feature of MyListing Pro.

Instructions

  1. Create a new JS code snippet.
  2. Copy the contents of code snippet below.
  3. Paste the contents into your code snippet.
  4. Review any notes that I’ve provided.
  5. Save and enable the code snippet.
  6. Test.

Snippet

  1. Adjust the word ‘Basic’ to match the text within your particular Listing Package.
  2. Adjust the word ‘Free’ to reflect the text you would like to see in the corresponding button.
jQuery(document).ready(function ($) {
    $('.c27-packages .pricing-item .plan-name:contains("Basic")')
        .siblings(".select-package")
        .find("a")
        .html('Free <i class="mi arrow_forward">');
});