Translate Your Online Store
You can easily add several Languages in your Online Store, just go to the Language Section in the Admin Panel. Here, you can add as many languages ...
All Jumpseller Stores regardless of the plan come with simple search capabilities. Search can be an important aspect of improving the customer experience on your website and help them find the things they are looking for.
You can add a search form on any page of your Online Store by including the piece of code you see below on your Theme Editor.
<form method="post" action="{{search.url_send}}">
<input type="text" name="q" value="{{search.query}}" />
<input type="submit" value='Search' />
</form>
Most times you will want to add it at the Layout Block.
Search is done on the following Product Fields:
Configure these fields to be used for search by defining the fields at the query string:
/search/shoes?fields=name,sku
Or you can define these fields to be searched with an hidden input field in your Search From:
<form method="get" action="{{ search.url_send }}">
<input type="text" name="q" value="{{ search.query }}" />
<input type="hidden" name="fields" value="name,sku" />
<input type="submit" value='{% t "Search" %}' />
</form>
If you do not use this input all the fields of your products will be considered on the search:
All the search terms will use the OR operator with a minimum number of required terms to match. If the search has 3 or less terms, all of them are required to match, but if it has more than 3 it only requires to find more than 75% of the total number of the terms searched.
We execute broad searches for every search terms, considering wildcards for the beginning and end of each term.
We have proximity searches, that is, if the customer inserts a misspelled search term, the search engine is still able to return results that resemble the desired search term ( does not apply to fields like sku and barcode).
The order of the results returned by the search engine depends both on the proximity of the fields to the search terms and the weight of the matched field.
It is possible to filter out the products from specific categories from the search results. You’ll need to add a field to the Search Results block.
At the Search Results Block you find something like:
<form method="get" action="{{ search.url_send }}">
<input type="text" name="q" value="{{ search.query }}" />
<input type="hidden" name="categories_ids" value="1234,9898" />
<input type="submit" value='{% t "Search" %}' />
</form>
Is the search case-sensitive?
No. Searching for “Shoes” or “shoes” returns the same results.
Free trial for 14 days. No credit card required.