You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.
In the category and product display pages this 'Menu: Store Home | Advanced Search | Shopping Cart & Wish List | Checkout' is written above the breadcrumbs. I went to 'Home > ClickCartPro > Displays: Skins, Menus, XHTML Includes and Messages > Manage Online Store Menu' and turned them all to false but that menu with all the links still appears, I don't know why, but it does.
At any rate, I don't think that's going to get rid of the entire thing and would like to know where I can edit that menu out so none of it shows up.
Thanx
Offline
Don't have time to find it for you right now, but check my posts over the last week or so and you'll find how I did it. Sorry, I'm running out the door right now.
Offline
Go to:
ClickCartPro > Displays: Skins, Menus, XHTML Includes and Messages > Manage XHTML Includes
And edit the 'Store Header Menu' include. Right at the top, right after the opening PHP tag, you can enter:
return;
To bypass the menu.
Offline
I'd like to change the 'home' link in the page header above the ' You are currently logged in as...' so that it points to the root directory and not the splash page - any ideas where to find that? I've looked through dozens of menus for hints but no luck.
James...
Offline
By root directory do you mean the online store home page?
If so, in your skinfunc.php change:
// +--
// | HREFs: These are account independent:
// +--
$x['link_contact'] = $this->link_namespace($x['app_id'],'contact',array());
$x['link_home'] = $this->link_namespace($x['app_id'],'display',array('ref' => 'splash'));
$x['link_cart'] = $this->link_namespace($x['app_id'],'viewcart',array());
$x['link_checkout'] = $this->link_namespace($x['app_id'],'checkout',array());to:
// +-- // | HREFs: These are account independent: // +-- $x['link_contact'] = $this->link_namespace($x['app_id'],'contact',array()); $x['link_home'] = $this->link_namespace($x['app_id'],'splash',array()); $x['link_cart'] = $this->link_namespace($x['app_id'],'viewcart',array()); $x['link_checkout'] = $this->link_namespace($x['app_id'],'checkout',array());
Offline