Okay
  Public Ticket #2880301
Starting At Instead of Price Ranges
Closed

Comments

  • Sean Powell started the conversation

    My client wants it to say "Starting at: $99" instead of showing the full range "$99-$500" because it's confusing for customers.

    Are there any options for this display?  The ranges are not enclosed in HTML tags so it can't just be done with CSS.

  • [deleted] replied

    Hi Sean,

    thank you for reaching out to ussmile.png

    You can change the wording of this however it's not a dynamic string, so it couldn't follow the prices set in Amelia.

    It probably can be done with some custom work, but our developers are very busy at the moment, working on some priority tasks and fixing bugs and issues with our plugins, so they won't be having the time for custom work in near future.

    But we can recommend these services for customization:

    https://codeable.io/?ref=l1TW1

    https://wpkraken.io/?tms-plugins

    They do develop such solutions, so can you please send your inquiry to them?


  • Sean Powell replied

    No, I will just write some javascript to do it I suppose... but still it would be easier to do if the text in the price was simply enclosed in some kind of basic HTML tags, like <span class="start-price"></span>.  Seems like a really easy change (~ 5 mins) to your platform code that wouldn't change anything visually, but would allow for easy customization of this aspect by customers like myself.

  • Sean Powell replied

    Here's the jQuery that will do this if anyone else needs it:

    <code>
    <script>$('document').ready(function(){$('.am-category-service-title-price span').each(function(){
    var newText = $(this).text().replace('Price:','From:').split('-')[0];
    $(this).text(newText);});});</script>
    </code>

  • [deleted] replied

    Hi Sean

    Thank you for sharing this with us, I forwarded it to our developers as well.

    If there is anything else we can assist you with do let us know.

    Have a wonderful day!