- Posts: 1
- Thank you received: 0
Kunena 7.0.8 Released
The Kunena team has announce the arrival of Kunena 7.0.8 [K 7.0.8] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x./6.1.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 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
16 years 9 months ago #31355
by joomjo
Joomla breadcrumbs do not show Kunena was created 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.
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.
16 years 9 months ago #31476
by Matias
Replied by Matias on topic Re: Joomla breadcrumbs do not show Kunena
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.
16 years 8 months ago #34389
by emeyer
Replied by emeyer on topic Re: Joomla breadcrumbs do not show Kunena
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)
***
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.
16 years 8 months ago #34420
by Matias
Replied by Matias on topic Re: Joomla breadcrumbs do not show Kunena
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.
16 years 7 months ago #34798
by emeyer
Replied by emeyer on topic Re: Joomla breadcrumbs do not show Kunena
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.
- TravelTimmy
-
- Offline
- New Member
-
Less
More
- Posts: 4
- Thank you received: 0
14 years 8 months ago #113062
by TravelTimmy
Replied by TravelTimmy on topic Kunena integration with Joomla breadcrumbs?
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
Thanks in advance for any suggestions-
Tim
Please Log in or Create an account to join the conversation.
Time to create page: 0.256 seconds