| RSS feed for ALL categories -
24-04-2006, 11:15 AM
I logged a feature enhancement to allow the KB article RSS feed to include articles from ALL categories.
This was set as a LOW PRIORIY by Kayako, but is a high priority for me.
Nothing else for it, I had to fix it myself..... here's how...
I added the feature to enter 0 as the category id in the RSS feed url to provide articles from ALL categories.
Edit /modules/knowledgebase/functions_clientkb.php
Change Line 167 from : if ($key == $kbcategoryid)
To : if (($key == $kbcategoryid) || ($kbcategoryid == 0)) |