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.

Topics contains old discussions (generally more than one year ago or based on circumstances that subsequently changed) or topics resolved in other ways. Topics moved into this category are closed from further discussion.

Question Joomla breadcrumbs do not show Kunena

More
16 years 7 months ago #31355 by joomjo
The built-in Joomla module Breadcrumbs does not show the Kunena forum.

I made a menu item directly to the forum. On any other page, the breadcrumbs module shows page name or extension name. Like so: home > news or home > agenda

With Kunena, nothing is displayed after 'home'.

Is this a general Joomla problem, or could this be a setting within Kunena?

Any help is greatly appreciated.

Thanks in advance.

Please Log in or Create an account to join the conversation.

More
16 years 7 months ago #31476 by Matias
Kunena 1.5 does not support breadcrumbs. They have been added into Kunena 1.6, but they will still need some work..

Please Log in or Create an account to join the conversation.

More
16 years 5 months ago #34389 by emeyer
I found some info on the Web about this which makes it look pretty easy! Here it is. Is this useful?

***

Let's say that we've landed on a Product Index page. Then:

global $mainframe;
$app =& JFactory::getApplication();
// get the pathway object we want to modify
$pathway =& $app->getPathway();
// add the text, but no link
$pathway->addItem('Products');

We would see this as our breadcrumb:

Home > Products
("Home" is linked, "Products" is not)

Now suppose the user clicks a product "The Breadslic0r 3000". As we go to that page, we expect products to be clickable and for "The Breadslic0r 3000" to show up in the breadcrumbs as the current item:

global $mainframe;
$app =& JFactory::getApplication();
$pathway =& $app->getPathway();
$pathway->addItem('Products', 'index.php?option=com_products&task=products');
$pathway->addItem('The Breadslic0r 3000'); // add w/ no link

Output:

Home > Products > The Breadslic0r 3000
(Note: "Home" and "Products" are both linked, "The Breadslic0r 3000" is not)

Please Log in or Create an account to join the conversation.

More
16 years 5 months ago #34420 by Matias
You can put links into all items: last link just won't show up..

Please Log in or Create an account to join the conversation.

More
16 years 5 months ago #34798 by emeyer
I've seen back-and-forth debate on whether the last link should show up. Personally I agree with you, the last item should be unlinked text with the title of the current page. But whichever way it's done, some people will say it should be the other way.

Please Log in or Create an account to join the conversation.

More
14 years 5 months ago #113062 by TravelTimmy
Hi. I read another forum post stating that as of K 1.6, integration with Joomla breadcrumbs would be possible. Is this true? If so, how is this enabled? If not, are there any 3rd party extensions out there that could do this?

Thanks in advance for any suggestions-

Tim

Please Log in or Create an account to join the conversation.

Time to create page: 0.241 seconds