You've incorrectly edited includes/languages/english/YOUR_TEMPLATE/meta_tags.php.
In the meta_tags.php that comes with Zen Cart, some of those fields are defined as follows:
Code:
// separators for meta tag definitions
// Define Primary Section Output
define('PRIMARY_SECTION', ' : ');
// Define Secondary Section Output
define('SECONDARY_SECTION', ' - ');
// Define Tertiary Section Output
define('TERTIARY_SECTION', ', ');
The correct way to remove those is to leave the portion in all capital letters (called constants) and remove the contents within the single quotes after the comma.
For example:
Code:
// separators for meta tag definitions
// Define Primary Section Output
define('PRIMARY_SECTION', '');
// Define Secondary Section Output
define('SECONDARY_SECTION', '');
// Define Tertiary Section Output
define('TERTIARY_SECTION', ' ');