Hey everyone!
With the holiday season upon us, we want to share our upcoming working hours:
- New Year: Our team will be off on January 1st and 2nd. We’ll be back on Friday, January 3rd, to respond to any messages received during this time.
- Weekend: As usual, we don’t work on weekends, so January 4th and 5th will also be non-working days.
- Orthodox Christmas: Our office will be closed on Monday and Tuesday, January 6th and 7th for the holiday.
After that, we’ll return to our regular schedule and assist you as quickly as possible.
In the meantime, you can explore our documentation for Amelia and wpDataTables. You'll find tons of helpful resources, including articles and handy video tutorials on YouTube (Amelia's YouTube Channel and wpDataTables' YouTube Channel), which might just have the answers you need while we’re away.
Thanks a bunch for your understanding and support!
Warm regards and happy holidays!
TMS
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.
Hi Sean,
thank you for reaching out to us
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?
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.
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>
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!