The menu in the Customer Service area is created dynamically
in the shopcustadmin.aspfile. The menu changes depends on the configuration
options selected in Software Configuration as discussed above.
Additional items can be added by altering lines like the one near the
bottom of the file:
AddMenuItem GetLang("langinvoicesummary"),DoFriendlySEOPage("shopprojectsummary.asp"), "Yes"
langinvoicesummaryin the example above is the title for the menu item.
shopprojectsummary.aspis the hyperlink that the menu item should go to.
Yes means the menu item is to be displayed – if set to No the menu item will not appear.
If you would like to add a new menu in the Customer Service area, please follow these steps below: :
1. Open
file shopcustadmin.asp using Notepad.
2. Add
these codes below somewhere in the routine sub SetUpMenus;e.g. (below is the
example to display search menu in the Customer Service area :
AddMenuItem "Search products",DoFriendlySEOPage("shopsearch.asp"), "Yes"
3. Save
the file and upload to your site.