Hello Sergey,
I had some investigation and found that submit forms for ( cobalt types as comments, parent ) submit forms cause a lot of duplicate content, the only solution I find to fix this is to:
Open this file:
com_cobalt/views/form/view.html.php
And inside this private function:
private function _prepareDocument()
Insert this:
// META Section
$meta = array();
$meta['description'] = $this->section->params->get('more.metadesc');
$meta['keywords'] = $this->section->params->get('more.metakey');
$meta['author'] = $this->section->params->get('more.author');
$meta['robots'] = $this->section->params->get('more.robots');
MetaHelper::setMeta($meta);
This way the robots tags you set for the type will inserted in that page header and you can tell search engines to nofollow, noindex those submit form pages
Rgds
Hello Sergey,
I had some investigation and found that submit forms for ( cobalt types as comments, parent ) submit forms cause a lot of duplicate content, the only solution I find to fix this is to:
Open this file:
com_cobalt/views/form/view.html.php
And inside this private function:
private function _prepareDocument()
Insert this:
This way the robots tags you set for the type will inserted in that page header and you can tell search engines to nofollow, noindex those submit form pages
Rgds