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.

Question Is it possible to get "Subject:" out of the RSS Feed Results?

More
16 years 5 months ago #32462 by Sal Collaziano
/forums/fb_rss.html?no_html=1

I'm just looking to remove "Subject:" from the title of the RSS posts.. Is there a way to do this?

Let me know..

Thank you!

Sal C.

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

More
16 years 5 months ago #32475 by xillibit
Hello,

open the file components/com_kunena/lib/kunena.rss.php and at line 157 change replace this :
Code:
echo " <title>" . _GEN_SUBJECT . ": " . stripslashes(kunena_htmlspecialchars($row->subject)) . " - " . _GEN_BY . ": " . stripslashes(kunena_htmlspecialchars($row->lastpostname)) . "</title>" . "\n";

by this :
Code:
echo " <title>" . _GEN_BY . ": " . stripslashes(kunena_htmlspecialchars($row->lastpostname)) . "</title>" . "\n";

I don't provide support by PM, because this can be useful for someone else.

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

More
16 years 5 months ago - 16 years 5 months ago #32476 by Mortti
Check components/com_kunena/lib/kunena.rss.php about line 157:
Code:
echo " <title>" . _GEN_SUBJECT . ": " . stripslashes(kunena_htmlspecialchars($row->subject)) . " - " . _GEN_BY . ": " . stripslashes(kunena_htmlspecialchars($row->lastpostname)) . "</title>" . "\n";

and try this:
Code:
echo " <title>" . stripslashes(kunena_htmlspecialchars($row->subject)) . " - " . _GEN_BY . ": " . stripslashes(kunena_htmlspecialchars($row->lastpostname)) . "</title>" . "\n";

EDIT: xillibit just answer too
Last edit: 16 years 5 months ago by Mortti.

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

More
16 years 5 months ago #32479 by Sal Collaziano
Thanks, you two! This one worked as I needed it to...

Mortti wrote:

Check components/com_kunena/lib/kunena.rss.php about line 157:

Code:
echo " <title>" . _GEN_SUBJECT . ": " . stripslashes(kunena_htmlspecialchars($row->subject)) . " - " . _GEN_BY . ": " . stripslashes(kunena_htmlspecialchars($row->lastpostname)) . "</title>" . "\n";

and try this:
Code:
echo " <title>" . stripslashes(kunena_htmlspecialchars($row->subject)) . " - " . _GEN_BY . ": " . stripslashes(kunena_htmlspecialchars($row->lastpostname)) . "</title>" . "\n";

EDIT: xillibit just answer too

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

Time to create page: 0.644 seconds