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)
-   -   Title Page (https://forum.x-cart.com/showthread.php?t=27089)

ezi designs 12-04-2006 04:14 AM

Title Page
 
Hi All

Can someone tell me where the editable text is so i can change my title page, you know the one that blue and sits at the very top of the page above the url.

Ta

Richard

balinor 12-04-2006 04:20 AM

Re: Title Page
 
Can you provide a link? Not sure what you are talking about.

ezi designs 12-04-2006 08:39 AM

Re: Title Page
 
Hi

Yes you can see an image of the top title bar i am trying to edit at this link http://www.ezidesigns.com/ezidesigns/1.gif


Thanks for your help

Richard

carpeperdiem 12-04-2006 08:55 AM

Re: Title Page
 
That would be your <title> tag that lives in /skin1/customer/home.tpl

What's between <title> and </title> ?

I have CDSEO, so mine will not match yours... but it may look something like this:

Code:

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


That tells me that it is looking for your page title from your admin seo settings --

yup...
/admin/configuration.php?option=SEO

which pulls company nam from:
/admin/configuration.php?option=Company

This is a very SEO friendly way to make your title... I would make one minor change though, instead of using "::" as the separator, use a "-" -- that's a little more SEO friendly.

find:
Code:

{if not %position.last%} :: {/if}

change to:
Code:

{if not %position.last%} - {/if}

(both times)

I hope this is what you were looking for.

You can also figure this out for yourself by using webmaster mode and knowing a little about html -- the title of a page is determined by the <title> tag, so find the <title> tag and go from there...

ezi designs 12-04-2006 09:28 AM

Re: Title Page
 
Thanks for that, but i found it after a long think. It is in admin | general settings| comany info.

Thanks for you help anyway


Richard


All times are GMT -8. The time now is 11:55 PM.

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