Magento Questions Answered By Magento Experts

 

Welcome Guest. Sign in or Signup

4 Answers

Magento layered navigation price range

Asked by: 3345 views , , , , ,
Questions

Hello,

I am new to magento ….

I want user friendly price range option in layered navigation means two input textfield pricefrom

& priceto where user can able to enter value & get result according to range.

It is possible in magento if yes can anyone tell me how it will be possible?

Please replay my question…….& help me………

In bydefault magento now it is showing like $0.00-$1000

 

Thanks,

kavita

 

4 Answers



  1. Magentist on Nov 22, 2010 Reply

    Hi kavita,

    This is going to take a little bit of work. The layered navigation is a sorting function, but what you want will be a search function, so you’ll need to create your own search form. In the end, you’ll need to create something close to this:

    <form id="form-validate" method="get" action="http://mdemo.ndgsf.com/catalogsearch/advanced/result/">
    	<label for="price">Price</label>
    	<div class="input-range">
    		<input type="text" class="input-text validate-number" title="Price" id="price" value="" name="price[from]">
    		<span class="separator">-</span>
    		<input type="text" class="input-text validate-number" title="Price" id="price_to" value="" name="price[to]">
    		<small>(USD)</small>
    	</div>
    	<button class="button" title="Search" type="submit"><span><span>Search</span></span></button>
    </form>

    I took this from the Advanced Search form, which has a Price To/From search field. The problem with this is that it will perform a search of the entire catalog rather than just the category you’re currently browsing, so you’ll need to play around and modify this, but it might be a good starting point.

    Hope this helps!

    Magento Themes by Magentist

    +1 Votes Thumb up 1 Votes Thumb down 0 Votes



    • kavita on Nov 23, 2010 Reply

      Thanks for your help….using your tips started working on that once again thanks….

      0 Votes Thumb up 0 Votes Thumb down 0 Votes



      • zaid on Aug 24, 2011

        any luck?

        0 Votes Thumb up 0 Votes Thumb down 0 Votes



  2. zaid on Aug 24, 2011 Reply

    Hi kavita,
    if you find any work realted to price text boxes plz share….:(

    Thanx.

    0 Votes Thumb up 0 Votes Thumb down 0 Votes


Answer Question