Clyde, first of all, thanks for all your contributions. I wanted to verify whether this was the proper way to add the code to the metatags.php.

When adding:
PHP Code:
    define('META_TAG_TITLE'META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER $page_check->fields['testimonials_title']);
    
define('META_TAG_DESCRIPTION'META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER zen_trunc_string($page_check->fields['testimonials_html_text'],TESTIMONIALS_MANAGER_DESCRIPTION_LENGTH));
    
define('META_TAG_KEYWORDS'META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER $page_check->fields['testimonials_title']); 
I get the following on my metatags:
HTML Code:
<title>META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGERGreat</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="keywords" content="META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGERGreat" />
<meta name="description" content="META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGERThis is just a test submission to show you how it looks, great, eh?" />
When deleting "META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER"

as in
PHP Code:
    define('META_TAG_TITLE'$page_check->fields['testimonials_title']);
    
define('META_TAG_DESCRIPTION'zen_trunc_string($page_check->fields['testimonials_html_text'],TESTIMONIALS_MANAGER_DESCRIPTION_LENGTH));
    
define('META_TAG_KEYWORDS'$page_check->fields['testimonials_title']); 
my meta tags show as they should...
HTML Code:
<title>Great</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="keywords" content="Great" />
<meta name="description" content="This is just a test submission to show you how it looks, great, eh?" />
Will doing so will create any problems with other pages? I ask because I assume the original code worked for you and you added it for a reason...

Thanks