Remove the "My List" header button from the Voyager WebVoyage search screen
- Product: Voyager
- Product Version: 9.0
- Relevant for Installation Type: Multi-Tenant Direct, Dedicated-Direct, Local, TotalCare
Question
How do I remove the "My List" header button (tab) from the WebVoyage search screen?
Answer
The XSL that generates the page creates the tabs based on looking at the XML options set up in:
/m1/voyager/xxxdb/tomcat/vwebv/context/vwebv/ui/en_US/xsl/userTextConfigs/pageProperties.xml
In the "Header Tab Display Order" section of the xml file, comment out the tabs you would not like to display, and they won't be generated. The following example will remove the "My List" tab:
<!-- ## Header Tab Display Order ## -->
<headerTabDisplayOrder>
<tab name="page.header.buttons.search.button">
<highlight
pages="
page.searchBasic
page.searchAdvanced
page.searchSubject
page.searchAuthor
page.searchCourseReserveData
"/>
</tab>
<tab name="page.header.buttons.mySearches.button">
<highlight
pages="
page.mySearches
"/>
</tab>
<!-- ## Test to remove the MyList button: 10-21-2019
<tab name="page.header.buttons.myList.button">
<highlight
pages="
page.myList
"/>
</tab>
-->
<tab name="page.header.buttons.myAccount.button">
<highlight
pages="
page.myAccount
page.myAccount.personalInfo
page.myAccount.editPreferences
page.myAccount.changePin
"/>
</tab>
</headerTabDisplayOrder>
<headerTabDisplayOrder>
<tab name="page.header.buttons.search.button">
<highlight
pages="
page.searchBasic
page.searchAdvanced
page.searchSubject
page.searchAuthor
page.searchCourseReserveData
"/>
</tab>
<tab name="page.header.buttons.mySearches.button">
<highlight
pages="
page.mySearches
"/>
</tab>
<!-- ## Test to remove the MyList button: 10-21-2019
<tab name="page.header.buttons.myList.button">
<highlight
pages="
page.myList
"/>
</tab>
-->
<tab name="page.header.buttons.myAccount.button">
<highlight
pages="
page.myAccount
page.myAccount.personalInfo
page.myAccount.editPreferences
page.myAccount.changePin
"/>
</tab>
</headerTabDisplayOrder>
Additional Information
Voyager Support has a limited ability to assist with WebVoyage customizations. Please see: What WebVoyage customizations are supported?
- Article last edited: 04-Nov-2019