I found that if site has custom frontpage, site-wide comments RSS isn't added. I worked around this by modifying line 57 of the file commentrss.module:
elseif (arg(0) == 'node' && variable_get('commentrss_site', TRUE)) {
became
elseif ($_GET['q'] == variable_get('site_frontpage', 'node') && variable_get('commentrss_site', TRUE)) {
Hope you find this useful.

Regards,
telega

Comments

gambit1975’s picture

Hi, I didn´t found that file where is it?

telega’s picture

Download commentrss package and unpack it - the commentrss.module file is inside.

gábor hojtsy’s picture

Version: 5.x-1.0 » 6.x-1.1

There is a nice drupal_is_front_page() function, which we can use. So I've committed a modified version by using that. Also, I kept the 'node' check, so that the default node listing always gets the site wide comment feed. Fixed in both 6.x and 5.x.

gábor hojtsy’s picture

Status: Active » Fixed
Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.