By Stacey Locke on Tuesday, 24 May 2016
Posted in General Issues
Likes 0
Views 331
Votes 0
On the category RSS page: http://easyblog.stackideas.com/categories/technology?format=feed&type=rss

Where is the subtitle "Select a category where the blog item should be posted into" coming from?

I'm seeing this on my own site and would like to remove it.
Looks like there is a bug here as it should be using the front end's language file rather than the back end. Temporarily, what you can do to fix this,

1. Edit the file /components/com_easyblog/views/categories/view.feed.php and at line 79 locate the codes below:


$this->doc->setDescription(JText::sprintf('COM_EASYBLOG_FEEDS_CATEGORY_DESC', $this->escape($category->getTitle())));


Replace it with,


$this->doc->setDescription(JText::sprintf('COM_EASYBLOG_RSS_FEEDS_CATEGORY_DESC', $this->escape($category->getTitle())));


2. Then, edit the file /language/en-GB/en-GB.com_easyblog.ini and locate the codes below,


COM_EASYBLOG_FEEDS_CATEGORY_DESC="Blog entries categorized under %1s"


Replace it with,


COM_EASYBLOG_RSS_FEEDS_CATEGORY_DESC="Blog entries categorized under %1s"
·
Tuesday, 24 May 2016 23:52
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks for the fix! I added the language string to my override file rather than modifying the original language file.

I trust this will make it into the next update.
·
Wednesday, 25 May 2016 00:03
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome Stacey Yes, this fix will be included on the next release.

By the way, please assign your domain to your license to obtain for support in the future. You can do so by accessing your license area at http://stackideas.com/dashboard
·
Wednesday, 25 May 2016 00:10
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post