Try this:
1. Copy /includes/modules/meta_tags.php to /includes/modules/YOURTEMPLATE/meta_tags.php
2. Edit the /includes/modules/YOURTEMPLATE/meta_tags.php file.
Around line 93 you'll see this:Insert the following BEFORE that line:
Code:
case ($this_is_home_page):
define('META_TAG_TITLE', (defined('NAVBAR_TITLE') ? NAVBAR_TITLE . PRIMARY_SECTION : '') . TITLE . TAGLINE);
define('META_TAG_DESCRIPTION', HOME_PAGE_META_DESCRIPTION);
define('META_TAG_KEYWORDS', HOME_PAGE_META_KEYWORDS);
break;
Then go to your /includes/languages/english/ folder and copy meta_tags.php to YOURTEMPLATE/meta_tags.php
and add these to the file:
Code:
define('HOME_PAGE_META_DESCRIPTION', 'My Home Page description metatags');
define('HOME_PAGE_META_KEYWORDS','My home page keywords here');
Now you can customize your home-page keywords till your heart's content.
The rest of the pages will operate based on the selected category's metatags or the selected product's metatags.