meta_tags.php
1.3.7

i WANTED TO REMOVE THE AUTO CATEGORY ADDINS ON THE PAGES, SO I FOUND THE FIRST ONE OF THESE:

else {
define('META_TAG_TITLE', str_replace('"','',$category_metatags->fields['categories_name'] . PRIMARY_SECTION . TITLE . TAGLINE));
define('META_TAG_DESCRIPTION', str_replace('"','',TITLE . PRIMARY_SECTION . $category_metatags->fields['categories_name'] . SECONDARY_SECTION . KEYWORDS));
define('META_TAG_KEYWORDS', str_replace('"','',KEYWORDS . METATAGS_DIVIDER . $category_metatags->fields['categories_name']));
} // EOF

REMOVING ' . KEYWORDS' FROM THE 'META_TAG_DESCRIPTION’ REMOVED THE CATEGORY ADDINS AND THE KEY WORDS FROM THE PAGE HTML meta tag description

but I wanted to leave in the key words in and just remove the category addins, I got stuck finding where to remove the category addins so I placed the keywords into the meta_tags.php in quotes