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.
Pages: 1
I'm using the Ecommerce Skin and currently "Menu: Store Home | Advanced Search | Shopping Cart | Checkout" appears on all Category and Product pages.
Since these links are already available in the "title bar" at the top of the page, I feel them to be redundant and want to stop it appearing and taking up unnecessary space, but I can't find how to disable it.
Also when you click on a Category from the menu on the left hand side, it comes up with the items in that Category, but above that shows the "category image" and lists the items in the Category.
Again I feel this is redundant and would like to be able to remove it, but can't find out how.
Any advice would be welcomed.
Offline
I changed some of mine and found them in the skin.php file. Look in System/Display/Display Skins and choose update the skin.php file. Look for the first instance of <td id="skin_ht_rcol">
I don't know how it would effect the appearance in removing that entire table row. I would back-up skin.php before doing so.
Offline
susan2go wrote:
I changed some of mine and found them in the skin.php file. Look in System/Display/Display Skins and choose update the skin.php file. Look for the first instance of <td id="skin_ht_rcol">
I looked at those, unfortunately they are the ones that appear on the top line (ie the same level as the logo)
I want to keep them ones, but get rid of the ones beneath the category title ie that say "Menu: Store Home | Advanced Search | Shopping Cart | Checkout" between the category name and the Location Breadcrumbs.
Offline
I'm using V. 7. Those menus are controlled in System/Displays/Skin Widgets. You can disable any of them except for the Search and Shopping cart on the left. Those 2 are generated by skin.php.
Offline
susan2go wrote:
I'm using V. 7. Those menus are controlled in System/Displays/Skin Widgets. You can disable any of them except for the Search and Shopping cart on the left. Those 2 are generated by skin.php.
Thanks for your reply, but unfortunately I tried that and that's not the ones I'm trying to get rid of.
The ones I want to remove are the ones highlighted here:
Offline
I haven't changed any of the breadcrumb links. This might help:
https://forum.kryptronic.com/viewtopic.php?id=24693
Offline
I found it. It is in the private cart directory off of your home: mine is listed like this: home\clickcart\apps\ecom\ECOM\includes
The file you want is: storemenuh.php
<?php
$link_home = $this->link_namespace('ecom','splash',array());
$link_search = $this->link_namespace('ecom','prodsearch',array());
$link_cart = $this->link_namespace('ecom','viewcart',array());
$link_checkout = $this->link_namespace('ecom','checkout',array());
?>
<div class="storelink">
<p><strong>Menu</strong>:
<a href="<?php print $link_home; ?>" title="Store Home">Store Home</a> |
<a href="<?php print $link_search; ?>" title="Advanced Search">Advanced Search</a> |
<a href="<?php print $link_cart; ?>" title="Shopping Cart">Shopping Cart</a> |
<a href="<?php print $link_checkout; ?>" title="Checkout">Checkout</a>
</p>
</div>
Just have it print a nbsp;
Offline
Excellent! Thank you very much for your help, I've sorted it out now.
For anyone who's interested, all you need to do is comment out the section between <div> and </div>
Offline
susan2go wrote:
I found it. It is in the private cart directory off of your home: mine is listed like this: home\clickcart\apps\ecom\ECOM\includes
The file you want is: storemenuh.php
Hi-
Can I get to this storemenuh.php file through the admin? Or do I have to pull the file off with FTP?
thanks
-Leo
Offline
Foto8Leo wrote:
susan2go wrote:
I found it. It is in the private cart directory off of your home: mine is listed like this: home\clickcart\apps\ecom\ECOM\includes
The file you want is: storemenuh.phpHi-
Can I get to this storemenuh.php file through the admin? Or do I have to pull the file off with FTP?
thanks
-Leo
Look inside the display includes for "Store Header Menu"
Offline
Pages: 1