Osclass forums
Support forums => old => Topic started by: abc500x500 on December 09, 2015, 10:04:38 am
-
Hi.
problem: in price search box, we only type 6 characters ! how we can increase it ?
-
You have to change maxlength attribute.
search-sidebar.php line 120
From
<input class="input-text" type="text" id="priceMin" name="sPriceMin" value="<?php echo osc_esc_html(osc_search_price_min()); ?>" size="6" maxlength="6" />
To
<input class="input-text" type="text" id="priceMin" name="sPriceMin" value="<?php echo osc_esc_html(osc_search_price_min()); ?>" size="6" maxlength="12" />
------------------------------
search-sidebar.php line 125
From
<input class="input-text" type="text" id="priceMax" name="sPriceMax" value="<?php echo osc_esc_html(osc_search_price_max()); ?>" size="6" maxlength="6" />
To
<input class="input-text" type="text" id="priceMax" name="sPriceMax" value="<?php echo osc_esc_html(osc_search_price_max()); ?>" size="6" maxlength="12" />