7of9
Hi,
You can try applying this solution:
-Go to file: com_jamegafilter/views/default/view.html.php
- At approx line 22, you see this function:
function display($tpl = null) {
$app = JFactory::getApplication();
$this->item = $this->get('Item');
- Change it to:
function display($tpl = null) {
$app = JFactory::getApplication();
$menu = $app->getMenu()->getActive();
$this->document->setDescription($menu->params->get('menu-meta_description'));
$config = JFactory::getConfig();
$robots = $config->get('robots');
if ($menu->params->get('robots')) {
$this->document->setMetadata('robots', $menu->params->get('robots'));
} else {
$this->document->setMetadata('robots', $robots);
}
$this->item = $this->get('Item');
Remember to backup this file first.
Regards