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
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.
ayudajoomla.com/joomla/joomla-seo/655-me...l-seo-en-kunena.html
Please Log in or Create an account to join the conversation.
any idea?
Thanks in advance,
Please Log in or Create an account to join the conversation.
Shimei wrote:
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
Thank you. But while I see that the years pass, but Kunena team can not fix these minor problems.
Matt Cutts. support.google.com/webmasters/answer/96569?hl=enUsing nofollow on links enables Googlebot to crawl other pages you'd prefer to see in Google's index.
Already waiting, as Sozzled asks my configuration report and write a post in which will be a lot of words, but it will not solve the problem.
Please Log in or Create an account to join the conversation.
The pull request is still in there and in consideration. I've also removed a few nofollows (which BTW, according to Google do not prevent it from visiting the URLs).
The issue on removing nofollows is that we have many different variations of the same URLs and only one of those is canonical -- eg. should be follow. If we just remove nofollow, large forums will not get (again) updated by Google and load on the site increases a lot.
Please Log in or Create an account to join the conversation.