Skip to content
  • There are no suggestions because the search field is empty.

FAQs

Showing and hiding page titles in the navigation


Question: My store's interface is set to load and display all content page titles automatically in the navigation. Can I change that? Can I hide some of them?

A: Yes, there is. In the Control Panel, set the Content Page to be excluded from content page navigation. That's a new feature in ProductCart v4 that is accessed from the “Settings” tab of the page “Edit Content Page”. Then, in the storefront, you have two choices:
  • Remove the code that automatically loads Content Pages in your header.asp or footer.asp and instead use the new “Pages > Generate Page Navigation” feature to create a navigation menu that you can then insert into your header.asp or footer.asp.
  • OR change the SQL query in that section of the code that automatically loads Content Pages in your header.asp or footer.asp . The new SQL query will be:
    sdquery="SELECT pcCont_IDPage, pcCont_PageName FROM pcContents WHERE pcCont_InActive=0 AND pcCont_MenuExclude<>1 ORDER BY pcCont_PageName ASC;"