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)
-   -   How to update the page title? (https://forum.x-cart.com/showthread.php?t=14439)

mike1234 06-08-2005 10:06 AM

How to update the page title?
 
I installed xcart 4.0 on the server, and designed the website, I have a qustion regarding the page title.
Under "admin panel-->general-->SEO Options", I can define META description and META keywords, but "Page title format" has only two options:
Shop name::category name::product name
Product name::category name::shop name

Now I want to use my own title on each page, instead of these two format, how can I do that?


Thanks

michael

balinor 06-08-2005 12:53 PM

All of the page titles are controlled via this code in customer/home.tpl:

Code:

<TITLE>
{if $config.SEO.page_title_format eq "A"}
{section name=position loop=$location}
{$location[position].0|escape}
{if not %position.last%} :: {/if}
{/section}
{else}
{section name=position loop=$location step=-1}
{$location[position].0|escape}
{if not %position.last%} :: {/if}
{/section}
{/if}
</TITLE>


mike1234 06-08-2005 04:00 PM

Thanks for your response.


All times are GMT -8. The time now is 01:25 AM.

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