Customizing numeric custom fields in the Advanced Search module

From JReviews Documentation
Revision as of 14:30, 5 August 2016 by Jreviews (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

When you add a numeric custom field (integer or decimal field types) to the Advanced Search module, it will display as a dropdown with operators (equals, less than, higher than, between) and one or two text inputs where visitors would enter the numbers.

For example, to add a jr_productprice custom field to the module, you would use this code:

<div class="jrFieldDiv">
  {jr_productprice_label}: {jr_productprice}
</div>

The module would allow visitors to search like this:

Higher or equal to the number specified:

Numeric-search1.png

Lower or equal to the number specified:

Numeric-search2.png

Between two specific numbers:

Numeric-search3.png

If you don't want visitors having to enter the numbers, you can create a custom select list with predefined number ranges and use it instead of the default inputs.

For example, instead of the default code for a numeric field, try this example:

<div class="jrFieldDiv jrLeft">
	Product Price:
	<select name="data[Field][Listing][jr_productprice]" class="jrSelect">
		<option value="">-- Select Price Range --</option>
		<option value="lower_500">$0 - $500</option>
		<option value="between_500_1000">$500 - $1000</option>
		<option value="between_1000_2000">$1000 - $2500</option>
		<option value="between_500_1000">$2500 - $5000</option>
		<option value="higher_5000">$5000+</option>
	</select>
</div>

The field will look like this in the search form:

Numeric-search4.png

To use this approach for your custom fields, replace jr_productprice in the above code with the name of your custom field and adjust the option values based on your preference.

Note: This customization will only work in the module theme file, not in the module parameters.