DrByte,
Dont suppose you could develop this further for us could you? This is a great insite, but not being a programmer I cannot take it to the next step :)
DrByte:
-
open your /includes/languages/english/YOURTEMPLATE/meta_tags.php
-
add a new line anywhere between the <?php and the closing ?> which says:
define('MY_IMPORTANT_HOME_PAGE_DESCRIPTION', 'blah blah blah blah');
>
> 3. edit /includes/modules/YOURTEMPLATE/meta_tags.php
> around line 138 you have:```php
define('META_TAG_DESCRIPTION', TITLE . PRIMARY_SECTION . str_replace(array("'",'"'),'',strip_tags(HEADING_TITLE)) . SECONDARY_SECTION . KEYWORDS);
```change that to:```php
define('META_TAG_DESCRIPTION', MY_IMPORTANT_HOME_PAGE_DESCRIPTION);
Can this be edited for all pages? cannot quite see my way through though to try it. If I add lines as in 2 above:
define('CONTACT_US_DESCRIPTION', 'blah blah blah blah');
define('ABOUT_US_DESCRIPTION', 'blah2 blah2 blah2 blah2');
Can I then do something with the other file? Also with the title?
Ideally, we could just do something like this:
define('CONTACT_US_TITLE', 'The best title in the world');
define('CONTACT_US_DESCRIPTION', 'blah blah blah blah');
define('NEW_EZPAGE_OR_OTHER_TITLE', 'The best second title in the world');
define('NEW_EZPAGE_OR_OTHER_DESCRIPTION', 'blah2 blah2 blah2 blah2');
Does this make sense? Is there a way to make this work please?