Holiday Notice – Support Unavailable on April 18 and April 21
We just wanted to let you know that our support team will be offline on Friday, April 18th (Good Friday) and Monday, April 21st (Easter Monday) due to the holidays.
We'll be back on Tuesday, ready to assist you!
In the meantime, if you need any help, feel free to:
-
Use the support widget in the bottom right corner on our websites (Amelia and wpDataTables) — our latest AI-powered assistant is there 24/7 to help with basic and intermediate questions,
-
Browse our detailed documentation (Amelia, wpDataTables)
-
Explore helpful articles,
-
Or check out our YouTube channels for video guides!
Amelia YouTube Channel
wpDataTables YouTube Channel
Thank you for your understanding, and we wish you a wonderful holiday weekend!
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!