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
This category contains miscellaneous, uncategorised user contributions, (templates, modules, plugins and hacks) relating to older versions of Kunena that are no longer supported.
The topics in this category are for historical interest only. Owing to the structural changes that occurred in K 2.0, many of the ideas in these topics will not work with later versions and, for that reason, the topics are locked.
The topics in this category are for historical interest only. Owing to the structural changes that occurred in K 2.0, many of the ideas in these topics will not work with later versions and, for that reason, the topics are locked.
Question RSS Category Feed
13 years 2 weeks ago #142567
by sohopros
RSS Category Feed was created by sohopros
Using K2.0.4 - When we enable RSS feeds, we see a single feed of all category postings. Is there a way to get an RSS feed of only a specific Category?
Please Log in or Create an account to join the conversation.
13 years 2 weeks ago #142595
by rich
Important! Always create a backup before you make any changes to your website!
Replied by rich on topic RSS Category Feed
In "Backend > Kunena Configuration > RSS > Include Categories"
Specify a list of categories (separated by comma) to be included exclusively in global feeds.
Specify a list of categories (separated by comma) to be included exclusively in global feeds.
Important! Always create a backup before you make any changes to your website!
Please Log in or Create an account to join the conversation.
13 years 2 weeks ago #142610
by sohopros
Replied by sohopros on topic RSS Category Feed
right, but we want users to be able to subscribe to only the categories they are interested in. For example user A may want a feed to Category 1 and user B a feed to Category 5, etc. We were hoping that if a user was viewing a specific category, we could show them an RSS link to a feed for just that category. Any way to do that?
Please Log in or Create an account to join the conversation.
13 years 2 weeks ago #142613
by TKtemp
Replied by TKtemp on topic RSS Category Feed
Hi,
this is possible only with hack.
It is not implemented in Blue Eagle template.
this is possible only with hack.
It is not implemented in Blue Eagle template.
Please Log in or Create an account to join the conversation.
13 years 2 weeks ago #142631
by sohopros
Replied by sohopros on topic RSS Category Feed
Can you given any guidance on the required hack?
Please Log in or Create an account to join the conversation.
13 years 2 weeks ago - 13 years 2 weeks ago #142633
by TKtemp
Replied by TKtemp on topic RSS Category Feed
Hi,
you just need to add category link + "&format=feed"
example:
open the file
components / com_kunena / template / blue_eagle / html / category / default.php
about line 48 find and replace this code:
with this code:
this will show rss icon in the header of category topics list and when you click it will open a new window with rss.
Hope this helps
you just need to add category link + "&format=feed"
example:
open the file
components / com_kunena / template / blue_eagle / html / category / default.php
about line 48 find and replace this code:
Code:
<div class="kheader">
<?php if (!empty($this->topicActions)) : ?>
<span class="kcheckbox select-toggle"><input class="kcheckall" type="checkbox" name="toggle" value="" /></span>
<?php endif; ?>
<h2><span><?php echo $this->escape($this->headerText); ?></span></h2>
</div>
with this code:
Code:
<div class="kheader">
<?php if (!empty($this->topics)) : ?>
<a href="<?php echo KunenaRoute::_ ( "index.php?option=com_kunena&view=category&catid=".$this->category->id."&format=feed"); ?>" title="<?php echo JText::sprintf('COM_KUNENA_LISTCAT_RSS') ?>">
<span class="kicon krss" style="float: right;margin: 1px -5px 0 10px;"></span>
</a>
<?php endif ?>
<?php if (!empty($this->topicActions)) : ?>
<span class="kcheckbox select-toggle"><input class="kcheckall" type="checkbox" name="toggle" value="" /></span>
<?php endif; ?>
<h2><span><?php echo $this->escape($this->headerText); ?></span></h2>
</div>
this will show rss icon in the header of category topics list and when you click it will open a new window with rss.
Hope this helps
Last edit: 13 years 2 weeks ago by TKtemp.
The following user(s) said Thank You: pendley, salemnguyen
Please Log in or Create an account to join the conversation.
Time to create page: 0.266 seconds