Hi, this module is great!
My only problem is that the rate widget is displayed in RSS (There is the node teaser and under it is: Rate this 1 2 3 4 5). The problem is I use RSS to automatically promote new content to Facebook and Twitter and the Rate widget should not be visible in there. I only found an option if I want to display it in node teaser - which I want. But how to disable it for RSS?

Comments

HS’s picture

Go to 'admin/content/types'. From there, on each content type click on 'Manage fields' and then click 'Display fields' tab. You can prevent certain elements from appearing in your RSS feed. Maybe that will help?

reinis.berzins’s picture

Issue summary: View changes

There is no such option to hide/exclude rate widget under admin/content/node-type/blog/display/rss.

A quick hack in the rate.module would be to change line 589 from its original code:
if ($op == 'view') {

to this one:
if ($op == 'view' && $node->build_mode != NODE_BUILD_RSS) {

lamp5’s picture

Status: Active » Closed (outdated)