Closed (outdated)
Project:
Rate
Version:
6.x-1.3
Component:
Miscellaneous
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
28 Mar 2012 at 12:17 UTC
Updated:
3 Jul 2019 at 07:46 UTC
Jump to comment: Most recent
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
Comment #1
HS commentedGo 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?
Comment #2
reinis.berzins commentedThere 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) {Comment #3
lamp5