Hello, I have client who have Joomla 1.5 site and wants some custom meta and since I used Tag Meta for available tags (very good extension btw
, I figured it would be easiest to fork Tag Meta for him and add new fields. I added column to database (for example, name: googlebot - varchar(255)), and where was entry for description in code, I duplicated it, just putting "googlebot" instead of "description". Everything works in administration, there is new field "googlbot", data can be saved, etc, but it does not generate new meta tag on frontend.
I added after line 140 in plugins/system/tagmeta.php
if ( !empty($items[0]->googlebot) ) { $document->setMetaData('googlebot',str_replace('"', '"', $items[0]->googlebot)); }
Any pointer to the right direction would be really appreciated