753 Posts in 310 Topics by 289 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1210 Views |
-
Subscribe RSS Widget on the home page

10 August 2010 at 4:37pm Last edited: 10 August 2010 4:40pm
Hi,
I often use the Blog module for the 'home' (or start) page. In this setup there is a little problem with the SubscribeRSSWidget. Instead of linking to mydomain.com/home/rss (which is the correct link to the rss feed) it links to mydomain.com/rss . If you click on that link all you get is a "Page not found" error.
Here is a simple fix for this problem. In /blog/code/widgets/SubscribeRSSWidget.php add the following line in green to RSSLink():
function RSSLink() {
Requirements::themedCSS('subscribersswidget');
$container = BlogTree::current();
if ($container && $container->Link() == '/') return '/home/rss';
if ($container) return $container->Link() . 'rss';
}It would be good if this or a similar fix could be added to the widget. To me a blog on the home page seems to be a quite common setup.
Cheers!
Anatol -
Re: Subscribe RSS Widget on the home page

10 August 2010 at 4:59pm
See this wiki page for how to submit code enhancements / patches. Things like this fix would be good to get into core as like you said its quite a common setup and a pretty simple fix.
| 1210 Views | ||
|
Page:
1
|
Go to Top |

