Kunena 7.0.5 & Kunena 6.4.11 – Security Updates Released
The Kunena team has announce the arrival of Kunena 7.0.5 [K 7.0.5] in stable which is now available for download as a native Joomla extension for J! 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.
The Kunena team is also pleased to announce the eleventh version of Kunena 6.4, a native Joomla extension for Joomla! 5.0, 5.1, 5.2, 5.3, 5.4 and 6.0.
Solved K 3.0 SEO Meta Description Generators
www.religiousverse.com
Site Summary
Report Details Site Totals Page Averages
Status: Complete
Date: Jul 10, 2013
Pages checked: 500
Duplicate content: 56%
Internal broken links: 0
Redirections 41
Size: 35 Kb
Words: 890
Internal links: 44.0
Please Log in or Create an account to join the conversation.
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
- Kubik-Rubik
-
- Offline
- Moderator
-
- Posts: 68
- Thank you received: 18
I had the same problem and since I use Kunena on a website with two languages, the result was even worse.
My suggestion for the description function is
- limit number of chars to 140 (or more if you don't use the global description)
- add the language tag
- add global description (optional)
After I have changed the code, everything is fine in Google's Webmaster Tools (HTML suggestion - duplicate description) and the output in Google is better.
Regards
Kubik-Rubik Joomla! Extensions
kubik-rubik.de
Please Log in or Create an account to join the conversation.
- Jiminimonka
-
- Offline
- Elite Member
-
- YBAS!
Please Log in or Create an account to join the conversation.
Kubik-Rubik wrote: Hi!
I had the same problem and since I use Kunena on a website with two languages, the result was even worse.
My suggestion for the description function is
- limit number of chars to 140 (or more if you don't use the global description)
- add the language tag
- add global description (optional)
Code:public function setDescription($description) { if(!$this->state->get('embedded')) { if(mb_strlen($description) > 140) { $description = mb_substr($description, 0, 140).'...'; } $lang = JFactory::getLanguage(); $meta_description = $description.' - '.$lang->getName().' - '.$this->document->get('description'); $this->document->setMetadata('description', $meta_description); } }
After I have changed the code, everything is fine in Google's Webmaster Tools (HTML suggestion - duplicate description) and the output in Google is better.
Regards
Which file and where were these changes made in?
*Edit: found it, nevermind.
Please Log in or Create an account to join the conversation.
ChaosHead wrote: And again all threads with nofollow attribute?
I call this anti-SEO.
I found a way to resolve this without having to hack the Kunena files each time Kunena updates. I posted what I had done with a component here: Kunena 3 - Replace all "nofollow" attributes
Please Log in or Create an account to join the conversation.