Prints the address of the online store's search page.
Kuvaus
The address of the search page is always /search?q=hakusana.
If a search term has been set or search filters selected, the filters' GET parameters will be added at the end of the address.
Syntaksi
{SearchUrl}Näkyvyys
Toimii näkyvyydessä: searchterm
The tag is used only on the search page and in helper attributes of the following tags:
Printing recommended search terms in a theme
By using the {SearchSuggestions} and {SearchUrl} tags, you can print search term-based suggestions on the page. The recommendations are determined automatically based on previous searches performed in the online store.
{SearchSuggestions( before: '<p class="SearchSuggestions"><strong>Recommended search terms: </strong>', after: '</p>', helper: '{{ <a href="{SearchUrl}">{SearchKeyword}</a> }}' )}The example shows how to print a list of recommended search terms on the search engine result page. For each recommendation, a link to the search page is printed using the {SearchUrl} tag. The search term itself is printed using the {SearchKeyword} tag.
Attribuutit
before/after:With the
beforeandafterattributes, you can define content that is output before or after the content produced by the tag.Allowed values: text that may contain HTML and Interface markup.
E.g.
before:'<p>This markup appears before the tag's own content.</p>'.after:'<p>This appears after the tag's own content.</p>'
If the tag does not produce any content, the content of the
beforeandafterattributes will also not be displayed.or:Defines alternative content that is displayed if the tag itself does not produce any content.
Allowed values: text that may contain HTML and Interface markup.
E.g.
or:'Content not found.'escape:Adds an escape character before quotation marks in the output. The attribute makes it easier to process the tag-produced content when using JavaScript.
Allowed values: true/false. The default value is false.
