WebVoyage: how to suppress limit on Advanced search tab?
- Product: Voyager
Question
How to suppress the "Place" or other limit from use on the Advanced search tab?
Answer
- On the server, navigate to your skin directory.
cd xsl/contentLayout
- Open cl_searchAdvanced.xsl for editing.
- Find the lines for the limit you wish to suppress & comment them out. For example, to suppress "Place":
01 | <!-- place line --> |
02 | <!-- |
03 | <xsl:for-each select="/page:page//page:element[@nameId='place']"> |
04 | <div class="limitDiv"> |
05 | <xsl:call-template name="buildLimitSetDropDown"> |
06 | <xsl:with-param name="limitType" select="'place'"/> |
07 | <xsl:with-param name="selectedLimit" select="''"/> |
08 | <xsl:with-param name="limitData" select="$Limits"/> |
09 | <xsl:with-param name="cssClass" select="'searchAdvancedPlaceMargin'"/> |
10 | </xsl:call-template> |
11 | </div> |
12 | </xsl:for-each> |
13 | --> |
- Save changes.
- Article last edited: 08-Oct-2013