Documentation
Project Links
Source: osCMax Forums - Thanks to michael_s
The current META Tag mod in osCMax 100% dynamically generates the tags based on the page content. You can manually edit the meta_tags.php file for each and every different page in your site to add whatever you like or modify the tags.
// Optional customization options for each language
switch ($languages_id) {
// English language
case '1':
//Extra keywords that will be outputted on every page
$mt_extra_keywords = '';
//Descriptive tagline of your web site
$web_site_tagline = TERTIARY_SECTION . '';
break;
// Define Primary Section Output
define('PRIMARY_SECTION', ' : ');
define('TITLE', 'AABox Web Hosting');
// Define Secondary Section Output
define('SECONDARY_SECTION', ' - ');
case CONTENT_INDEX_DEFAULT:
define('META_TAG_TITLE', TITLE . PRIMARY_SECTION . HEADING_TITLE . $web_site_tagline);
define('META_TAG_DESCRIPTION', 'custom text here' . TITLE . PRIMARY_SECTION . HEADING_TITLE . SECONDARY_SECTION . WEB_SITE_KEYWORDS);
define('META_TAG_KEYWORDS', WEB_SITE_KEYWORDS . HEADING_TITLE);
break;
case CONTENT_INDEX_DEFAULT:
define('META_TAG_TITLE', TITLE . PRIMARY_SECTION . HEADING_TITLE . $web_site_tagline);
define('META_TAG_DESCRIPTION', 'custom text here' . TITLE . PRIMARY_SECTION . HEADING_TITLE . SECONDARY_SECTION . 'custom text here too' . WEB_SITE_KEYWORDS);
define('META_TAG_KEYWORDS', 'custom,keywords,here' . WEB_SITE_KEYWORDS . HEADING_TITLE);
break;