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.
does anybody know how to get rid of the
store home - search - checkout - shopping cart, on all the pages as i dont need them, i know it is something to do with this element:
(CGIGET TYPE="SUB" VALUE="ste_exec_element" PARAMS="(CGIVAR)element_id(/CGIVAR)")
but cant find how to changed it!!!!
i have tried the ste_layout but thats not it, so dont know
thanks
Offline
That should be in the ste_layout.txt file (also accessible through the admin under Manage Site Elements -> Site HTML Layout). As an example, look for text similar to:
<A HREF="(CGIVAR)common_url_checkout(/CGIVAR)">checkout</A>
Offline
hi,
yeah i deleted thats code other day, but its still available in checkout and shopping cart stages, when i delete
(CGIGET TYPE="SUB" VALUE="ste_exec_element" PARAMS="(CGIVAR)element_id(/CGIVAR)")
it goes but it also deletes the checkout and shopping cart forms
so i'm lost..............!
Offline
The code:
(CGIGET TYPE="SUB" VALUE="ste_exec_element" PARAMS="(CGIVAR)element_id(/CGIVAR)")
is responsible for displaying the page content and can't be deleted. Can you give us an example URL of the problem page so we can see the issue?
Offline
click on add to cart and it will take you to the page
thanks
Last edited by base2001 (09-20-2006 07:15:21)
Offline
Those links are either in your site layout or in the layout for the cart page. Take a look under Manage HTML Pages & Elements -> Manage HTML Pages (System) -> Online Store - Shopping Cart. If the links aren't in there, then they must be in your site layout.
Last edited by rachaelseven (09-19-2006 12:09:48)
Offline
hi, thanks for reply
but they not in any of them 2, i did at first delete them out of site layout but then a day later i noticed it again
so i aint got a clue
Offline
That text is controlled by two files, depending on if you have tracking enabled or not.
Do this.
In the Admin Area.
Go to Main Menu - HTML Pages & Elements - Manage Site Elements
Find these two elements.
'Store Header - Tracking'
Change the code in that element to this.
<!-- This is commented out in order to avoid redundancy.
<CENTER>
<A HREF="(CGIVAR)common_url(/CGIVAR)&pg=store">store home</A> |
<A HREF="(CGIVAR)common_url(/CGIVAR)&pg=search">search</A> |
<A HREF="(CGIVAR)common_url(/CGIVAR)&pg=cart">shopping cart</A> |
<A HREF="(CGIVAR)common_url_checkout(/CGIVAR)">checkout</A> |
<A HREF="(CGIVAR)common_url(/CGIVAR)&pg=track">order tracking</A>
</CENTER>
<BR> -->
(CGIGET TYPE="SUB" VALUE="ste_cat_nav")
and in the element called
'Store Header - No Tracking'
Change the code to this
<!-- This is commented out in order to avoid redundancy.
<CENTER>
<A HREF="(CGIVAR)common_url(/CGIVAR)&pg=store">store home</A> |
<A HREF="(CGIVAR)common_url(/CGIVAR)&pg=search">search</A> |
<A HREF="(CGIVAR)common_url_checkout(/CGIVAR)">checkout</A> |
<A HREF="(CGIVAR)common_url(/CGIVAR)&pg=cart">shopping cart</A>
</CENTER>
<BR> -->
(CGIGET TYPE="SUB" VALUE="ste_cat_nav")
That should do the trick!
All your doing is commenting out the code so that in the future if you want to bring it back, just remove the comment lines.
Offline
hi
Thanks for answers, it is now sorted, using the method for above
Offline