Where/how do I set the Home page/site Title and Meta Tags for the search engines to pick up. ?
Kevin
Where/how do I set the Home page/site Title and Meta Tags for the search engines to pick up. ?
Kevin
might try looking in the
includes/languages/english/meta_tags.php
remember to save it to your template over rides folder
Zen cart PCI compliant Hosting
where is the page Title set?
Kevin
I think the title is made up of the page title (line12) and the site tagline (line15).
When the title is generated it puts a comma between the two of these items.
Does anyone know how to remove the comma? - see below
TIA
Paul
<title>Artificial Flowers, | Wedding Flowers | Artificial Plants | Silk Flowers by Floralart</title>
Thanks Paul,
But, on which page? It's not on the MAIN page in Define Pages.
Kevin
See what the Merlin guy said above ....
you need to open and then edit the file 'meta tags' with a text editor such as Notepad++
download the file from your host - includes/languages/english/meta_tags.php
edit it
upload it back again
(good idea to keep a copy of the original on your server in case you make a mistake)
Paul
I'm still trying to find out WHAT page I need to edit for the Site Title??
As Merlinpa1969 & Matchworker said, you need to edit
includes/languages/english/meta_tags.php
Edit the first 2 define statements around lines 11 & 14.
NO active variables exist in this file. Site not pulling meta OR title from this file.
<?php
//
// +----------------------------------------------------------------------+
// |zen-cart Open Source E-commerce
|
// +----------------------------------------------------------------------+
// | Copyright (c) 2003 The zen-cart developers |
// | |
// | http://www.zen-cart.com/index.php |
// | |
// | Portions Copyright (c) 2003 osCommerce |
// +----------------------------------------------------------------------+
// | This source file is subject to version 2.0 of the GPL license, |
// | that is bundled with this package in the file LICENSE, and is |
// | available through the world-wide-web at the following url: |
// | http://www.zen-cart.com/license/2_0.txt. |
// | If you did not receive a copy of the zen-cart license and are unable |
// | to obtain it through the world-wide-web, please send a note to |
// | [email protected] so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
// $Id: meta_tags.php
1091 2005-03-29 06:48:38Z ajeh $
//
// page title
define('TITLE', 'A Test Site');
// Site Tagline
define('SITE_TAGLINE',
'Testing Art of E-commerce');
// Custom Keywords
define('CUSTOM_KEYWORDS', 'ecommerce, open source, shop, online shopping');
// Review Page can have a lead in:
define('META_TAGS_REVIEW', 'Reviews: ');
?>
It does on my cart
I bet if you right click your site home page and look at the source you will see:
<title>A Test Site, Testing Art of E-commerce</title>
Paul