X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   getting rid of tabs in upper right hand corner (https://forum.x-cart.com/showthread.php?t=7604)

sherwood 05-16-2004 07:59 PM

getting rid of tabs in upper right hand corner
 
Can anyone advise me of how to get rid of the 3 tabs in the upper right hand corner of X-cart. I have tried to use {* *} but if that is correct I am not doing it in the right page because its not working.

Thank you!!!!

TelaFirma 05-16-2004 09:11 PM

I head.tpl you will see the line:

Code:

{include file="customer/top_menu.tpl"}

on or about line 8. Either delete this line, or comment it out like this:

Code:

{* {include file="customer/top_menu.tpl"} *}

BCSE 05-17-2004 04:46 AM

Some other ways of getting rid of the speed bar:

1. Log in to your admin
2. go to "speed bar" link under Administration section
3. uncheck all the speed bar links
4. Click apply

~~~~~~~~~~
You can also go to top_menu.tpl and comment out
Quote:

{if $speed_bar}
<tr>
<td valign=top align=right>
<table border=0 cellpadding=0 cellspacing=0>
<tr>
{section name=sb loop=$speed_bar}
{if $speed_bar[sb].active eq "Y"}
<td>{include file="customer/tab.tpl" tab_title="`$speed_bar[sb].title`"}</td>
<td width=1>[img]{$ImagesDir}/spacer.gif[/img]</td>
{/if}
{/section}
</tr>
</table>
</td>
</tr>
{/if}

Or like telafirma said, if you want to get rid of the whole top_menu.tpl, comment it out.

Carrie

sherwood 05-17-2004 03:02 PM

head.tpl not letting me make changes
 
Hi,

I tried commenting the fields out but upon clicking save I receive a permission denied error-file not saved. If I try to make any changes to the head.tpl file I get this error. Does anyone have any ideas of what is happening here???

Angie

TelaFirma 05-17-2004 03:26 PM

It sounds like who ever installed your X-Cart changed all the file permissions so that you can not write to them.

The file permissions for your templates should be set to either 644 or 666. i would set them to 644 first and see if that will let you write to them.

If you are unsure how, then contact the individual that installed your X-Cart, or your hosting company.

mlfnet 05-17-2004 03:29 PM

Server Permissions
 
The file you are trying to save is not writable by your web-server (i.e. apache).

In *nix you need to set the permissions of the file using the 'chmod' and ownership using the 'chown' commands. See your webmaster for details. (most likely something like 'chown apache:www skin1/customer/*.tpl' and 'chmod 664 skin1/customer/*.tpl' will do).

If you're running on windows, you'll have to ask someone else.


All times are GMT -8. The time now is 03:24 AM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.