Active
Project:
Facebook social plugins integration
Version:
6.x-1.0-beta9
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
26 May 2012 at 19:41 UTC
Updated:
26 May 2012 at 19:41 UTC
After a lot of time wasted on checking and rechecking the block visibility settings, I found that the comment block has been hard-coded to not work on anything other than nodes.
// in fb_social_comments.module
case 'view' :
switch ($delta) {
case 'comments' :
// show the block comment only for nodes
$node = menu_get_object();
if (is_object($node) && $node->status && $node->nid && arg(2) != "edit") {
I would like my users to be able to comment on views as well.
Especially since all the other blocks work fine on views.
Is there any particular reason for this deviation from the normal block behaviour?