When you reply - Scroll up and provide the information
When you reply - Scroll up and provide the information
Zen-Venom Get Bitten
Here's a link to the page I'm attempting to disable http://irisoriginals.com/Emporium/in...age=contact_us
As the navigation header for your store is non-standard, I'd suggest that you look in /includes/templates/forest_path/common/tpl_header.php. It looks like the code that was added there to display the "Contact Us" link didn't check to see if the page is currently enabled.
Your template designer has coded a link to the Contact Us page in the main navigation bar. You'll need to find that (probably in tpl_header.php) and remove that line.
The Define Page Status option only removes access to the Contact Us page from the Information box. It doesn't remove the page itself.
Why don't you want your visitors to contact you ?
To remove the "Contacts" button completely from view you'll need to modify a line of code in the file:
Emporium/includes/templates/template_default/common/tpl_header.php
The code line your looking for sits between the lines starting with <!--bof-navigation-display and <!--eof-navigation-display and is the only line with the words "Contact Us" in it.
I can't say exactly what it will read but you need to remove that line of code. It might say something like the following :
<li class="current"><a href="http://irisoriginals.com/Emporium/index.php?main_page=contact_us"><span>Contact Us</span></a></li>
only it probably will have some php coding embedded. Basically to remove "Contact Us" from the display you need to remove everything between (and including) the opening and closing <li></li>
If you want to post the block of code between <!--bof-navigation-display and <!--eof-navigation-display then I can probably tell you what to replace it with.