Kryptronic Software Support Forum

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.

#1 01-19-2007 21:03:39

grcauto
Member
From: Bloomsburg, PA
Registered: 09-11-2006
Posts: 128
Website

Getting rid of menu

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

 

#2 01-19-2007 21:39:37

slydog
Member
Registered: 05-21-2006
Posts: 694

Re: Getting rid of menu

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

 

#3 01-21-2007 11:01:57

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19951
Website

Re: Getting rid of menu

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:

Code:

return;

To bypass the menu.


Nick Hendler

Offline

 

#4 01-21-2007 12:39:02

grcauto
Member
From: Bloomsburg, PA
Registered: 09-11-2006
Posts: 128
Website

Re: Getting rid of menu

Sorry Nick,
I should have closed this earlier. I found a solution.
Thanks,

Offline

 

#5 02-11-2007 16:09:09

wyattea
Member
Registered: 01-07-2006
Posts: 1650

Re: Getting rid of menu

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

 

#6 02-11-2007 16:39:58

sppars
Member
Registered: 01-25-2006
Posts: 301

Re: Getting rid of menu

By root directory do you mean the online store home page?

If so, in your skinfunc.php change:

Code:

// +--
// | 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:

Code:

// +--
// | 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

 

Board footer