- Posts: 4
- Thank you received: 0
Kunena 7.0.2 Released
The Kunena team has announce the arrival of Kunena 7.0.2 [K 7.0.2] in stable which is now available for download as a native Joomla extension for J! 5.3.x/5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0
Merged Kunena Latest 2.0.1 inserts noindex meta tag
Are you confirming a bug? I will leave the Module Latest unpublished for now.
Please Log in or Create an account to join the conversation.
/components/com_kunena/views/topics/view.html.php
and changing the noindex to index.
$this->document->setMetadata ( 'robots', 'noindex, follow' );
to
$this->document->setMetadata ( 'robots', 'index, follow' );
I can then republish the latest module and the meta is correct
cheers
lee
Please Log in or Create an account to join the conversation.
$this->document->setMetadata ( '$name', '$content', '$http-equiv' );
but I removed this line and it works
I do not know why it is permanently, I can not change the access for robots in the articles
$this->document->setMetadata ( 'robots', 'noindex, follow' );
cześć
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- Gamer Templates
-
- Offline
- Senior Member
-
Please Log in or Create an account to join the conversation.
- edmarholanda
-
- Offline
- New Member
-
- Posts: 4
- Thank you received: 0
cybnet wrote: Finally I've found a temporal solution. In my case I use the module with latest topics output. For other module's configuration this solution may don't work.
Open: joomla_site/components/com_kunena/views/topics/view.html.php
Change line 315 from:ToCode:$this->document->setMetadata ( 'robots', 'noindex, follow' );Code://check if we are in kunena latest topics page if(JRequest::getCmd('option','') == 'com_kunena' && JRequest::getCmd('view','') == 'topics'){ $this->document->setMetadata ( 'robots', 'noindex, follow' ); }
Only put this on line 315?
$this->document->setMetadata ( 'robots', 'noindex, follow' ); are also in lines 346 and 377.
Please Log in or Create an account to join the conversation.