ClickComments on Feed
I’ve hacked the clickcomments plugin in order to make it display only in the feed (since my layout places the script on the single post’s sidebar).
However I’ve been trying to see it and it is failing for some reason. It just won’t display in my feedburner human-readable feed. I’m not certain if feedburner prevents scripts from running or if the script is malfunctioning but I can see the correct code in the source of the feedburner page.
Can any of me feed readers else see the clickcomments panel under the content? If so I’d appreciate to hear from you.
Just in case you want to do the same with your own blog, in order to make the plugin display the panel only in the feed, you need to edit the plugin in your wordpress installation and just after the function begins, insert:
if(is_feed()) {
and close the bracket just before the return $content; part
In case you want to place the panel in your sidebar (in a widget for example) I’ve found that the folllowing code works just fine