Marco Camara Posted February 15, 2014 Share Posted February 15, 2014 I want to add more option to be selected by my customers when searching for a store in my website. I am using the blockstore module, nut I just have 15 / 25/ 50 and 100km available to the drop down list. I want to include more options like 200 ,500 and 1000 km. How can I do that? Link to comment Share on other sites More sharing options...
Paulito Posted February 15, 2014 Share Posted February 15, 2014 Good Morning Using PS 1.5.5.0 Default theme Go to: public_html/Your Shop/themes/default/stores.tpl Around line 82 add the lines in red: <label for="radiusSelect">{l s='Radius:'}</label> <select name="radius" id="radiusSelect"> <option value="15">15</option> <option value="25">25</option> <option value="50">50</option> <option value="100">100</option> <option value="200">200</option> <option value="500">500</option> <option value="1000">1000</option> </select> {$distance_unit} <img src="{$img_ps_dir}loader.gif" class="middle" alt="" id="stores_loader" /> Result http://screencast.com/t/7CEV2eiMHx Hope this helps Paul Link to comment Share on other sites More sharing options...
Marco Camara Posted February 16, 2014 Author Share Posted February 16, 2014 Perfect. Simple and functional. Thank you very much foe the support. Marco Link to comment Share on other sites More sharing options...
Recommended Posts