[quote=etal2000;386495]
Hi Etal
After posting up my thoughts on this website about the position I found myself in I continued to trawl for any snippet I could found on this topic. It is amazing to find this website really does have an abundant amount of people's knowledge stashed away in its depths. Why I am opening with this line, because I found the answer tucked away in one of these magical threads.
The answer does lay with the Meta_Tags.php file which you will find in INCLUDES/MODULES/. Bring that file down to your PC and edit it. Look for line 54 that starts with:
($_GET['main_page']) {
case 'advanced_search':
case 'account_edit':
case 'account_history':
case 'account_history_info':
case 'account_newsletters':
case 'account_notifications':
case 'account_password':
case 'address_book': blah blah blah and so on.
NOW add this code after
switch ($_GET['main_page']) {
case ($this_is_home_page == true):
define('META_TAG_TITLE', 'This is Your Title Tag for the Home Page ');
define('META_TAG_DESCRIPTION', This is Your Descriptive Tag for the Home Page.
');
define('META_TAG_KEYWORDS', 'Keyword,Keyword,Keyword,Keyword,for the Home Page,');
break;
And what you should have end having is something like this:
switch ($_GET['main_page']) {
case ($this_is_home_page == true):
define('META_TAG_TITLE', 'This is Your Title Tag ');
define('META_TAG_DESCRIPTION', 'This is Your Descriptive Tag.
');
define('META_TAG_KEYWORDS', 'Keyword,Keyword,Keyword,Keyword');
break;
case 'advanced_search':
case 'account_edit':
case 'account_history':
case 'account_history_info':
case 'account_newsletters':
case 'account_notifications':
case 'account_password':
case 'address_book':
I am finding that sometimes People write in riddles or have trouble trying to get there message across and not very specific when it comes to signposting someone. I also believe that people have made certain amendments to their file structure when building their cart and not everyone is arriving at the same folder in their file structure when trying to follow someone's instructions.
I passed this info across to another developer in the North of Scotland and within minutes I had an email that said great!! It Works.
One point I have applied this fix to the latest version of ZEN CART that one of my clients is using. What I have not done yet is inserted into an older version of ZEN CART, which is a few versions behind and has not been upgraded yet. But I did look at the Meta_Tags.php file that is in the same place and appears not dissimilar to the latest version, so I am looking towards it fixing the problem here also. The other problem this older site also has is you cannot edit the Meta Tags at the CATEGORY level only the PRODUCT level. So another challenge maybe??????
Well I am off to keep my ZEN CUSTOMERS in profit, hope all this helps Etal.