*

alex7070

  • ****
  • 132 posts
How to increase the number limit in the search box by price?
« on: March 23, 2021, 06:16:55 PM »
Hi! Now, when searching by price, it is possible to enter a maximum of 6 digits. This may not be enough for example when looking for properties at higher prices. Is it possible to increase the maximum number of digits for a price search? Thanks

Marked as best answer by frosticek on March 23, 2021, 07:47:22 PM
*

MB Themes

Re: How to increase the number limit in the search box by price?
« Reply #1 on: March 23, 2021, 07:08:21 PM »
If you look on HTML for this input,
Code: [Select]
<input class="input-text" type="text" id="priceMin" name="sPriceMin" value="" size="6" maxlength="6">
maxlength is what you are looking for.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

alex7070

  • ****
  • 132 posts
Re: How to increase the number limit in the search box by price?
« Reply #2 on: March 23, 2021, 07:42:03 PM »
Thanks!