- Posts: 19
- Thank you received: 0
Kunena 7.0.4 Released
The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] 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
Topics that are moved into this category are generally considered to be closed. Users may want to add additional information but these topics should not be resurrected in order to discuss new problems or unrelated matters.
Merged Meta description tag
13 years 4 months ago #137898
by ariaji86
Thanks for all the hard works
Replied by ariaji86 on topic Is Meta Duplicate Already Fixed?
Is Meta Duplicate Already Fixed? it seems ok if that for created topic, but for auto generated topics from article by discuss plugin?

is it still ok??
is it still ok??
Thanks for all the hard works
Please Log in or Create an account to join the conversation.
13 years 4 months ago #137902
by sozzled
Blue Eagle vs. Crypsis reference guide
Read my blog and
Replied by sozzled on topic Is Meta Duplicate Already Fixed?
I'm sorry but I don't understand the question. Can you point us to a topic that discusses this issue of "Meta Duplicate", please? Thank you.
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
13 years 4 months ago #137905
by ariaji86
Thanks for all the hard works
Replied by ariaji86 on topic Is Meta Duplicate Already Fixed?
ok.. here is the example from
www.kunena.org
you can check it
in this topic:
www.kunena.org/forum/184-Discuss-Article...0-3-security-release
the meta description is...
Kunena! - To Speak! Next Generation Forum Component for Joomla. article] - 1/1
and in this topic:
www.kunena.org/forum/184-Discuss-Article...unena-2-0-2-released
the meta description is...
Kunena! - To Speak! Next Generation Forum Component for Joomla. article] - 1/1
Same meta Description in two different topic right? Correct me if i'm wrong
you can check it
in this topic:
www.kunena.org/forum/184-Discuss-Article...0-3-security-release
the meta description is...
Kunena! - To Speak! Next Generation Forum Component for Joomla. article] - 1/1
and in this topic:
www.kunena.org/forum/184-Discuss-Article...unena-2-0-2-released
the meta description is...
Kunena! - To Speak! Next Generation Forum Component for Joomla. article] - 1/1
Same meta Description in two different topic right? Correct me if i'm wrong
Thanks for all the hard works
Please Log in or Create an account to join the conversation.
13 years 4 months ago #137917
by ariaji86
Thanks for all the hard works
Replied by ariaji86 on topic Is Meta Duplicate Already Fixed?
is it possibly to get some character from article content, or something else just for different between each auto generated topics from article?
Thanks for all the hard works
Please Log in or Create an account to join the conversation.
13 years 4 months ago #137922
by sozzled
Blue Eagle vs. Crypsis reference guide
Read my blog and
Replied by sozzled on topic Meta description tag
*** Topics merged ***
ariaji86: I think the answer you are looking for is here.
ariaji86: I think the answer you are looking for is here.
Blue Eagle vs. Crypsis reference guide
Read my blog and
The following user(s) said Thank You: ariaji86
Please Log in or Create an account to join the conversation.
13 years 4 months ago - 13 years 4 months ago #137923
by ariaji86
Thanks for all the hard works
Replied by ariaji86 on topic Meta description tag
wow..
big thanks for all of you in this thread and all of the kunena team..
this is what i was searching for..
thanks very much
i modified too in components/com_kunena/views/topic/view.html.php
but i'm newbie and i just write this by trial and error.. i'm so thankful if someone could review my modification
big thanks for all of you in this thread and all of the kunena team..
this is what i was searching for..
thanks very much

i modified too in components/com_kunena/views/topic/view.html.php
but i'm newbie and i just write this by trial and error.. i'm so thankful if someone could review my modification
Code:
// Create Meta Description form the content of the first message
// better for search results display but NOT for search ranking!
$description = KunenaHtmlParser::stripBBCode($this->topic->first_post_message, 182);
$description = preg_replace('/\s+/', ' ', $description); // remove newlines
$description = preg_replace('/^[^\w0-9]+/', '', $description); // remove characters at the beginning that are not letters or numbers
$description = preg_replace('/article]/', 'article', $description); // add by Jiboy
$description = trim($description); // Remove trailing spaces and beginning
/* commented by Jiboy
if ($page) {
$description .= ' - ' . $page . '/' . $pages; //avoid the "duplicate meta description" error in google webmaster tools
}*/
// add by Jiboy
if ($page and $description != "article") {
$description .= ' - ' . $page . '/' . $pages;
}
else if ($description == "article") {
$description .= ' - ' . $title;
}
// - ending add on by jiboy -
Thanks for all the hard works
Last edit: 13 years 4 months ago by ariaji86.
Please Log in or Create an account to join the conversation.
Time to create page: 0.275 seconds