Hi,

I ran into a problem which I hope someone can help me with. Basically, I enabled the module but I am unable to see the block on one page I created. I enabled the module, set the right permissions and enabled the blocks on the block page. Yet, I am still not able to see the block. Is there anything else I should do by any chance?
Thanks
T

Comments

mr.baileys’s picture

Status: Active » Postponed (maintainer needs more info)

Did you enable comments (read/write) on the page where you expect the block to show up?

Tafa’s picture

Hi Mr. Baileys,

Thanks for your reply. I enabled comment on the content type form but I am not able to see the comment form as suggested. Was there another place I needed to look to enable comments?
Thanks,
T

mr.baileys’s picture

Comments can be enabled and disabled on individual nodes too, not just the content type. Edit the node where for which you want the comment form to appear, and check the "Comment settings" fieldset, making sure that they are set to Read/Write too.

Tafa’s picture

I enabled comments on the individual node (mysite.com/user) but it does not show up either. Can this be related to the user page itself?
Thanks
T

mr.baileys’s picture

Status: Postponed (maintainer needs more info) » Closed (cannot reproduce)

/user is not a node but a page, so you cannot enable comments /user (unless you're using other contrib modules). I don't think your problem is related to commentblock. It's probably best to try and enable the comment form without comment block for now, and then add commentblock once the comment form is showing, but that's outside of this issue's scope (Hoping I'm not overstepping any boundaries, I'm tentatively marking this can't reproduce.)

See Community & Support to see where you can get more help.

mattwmc’s picture

I'm having the same problem.

-Comments have been appearing on my site as they always have.

-Enabled this mod and placed the "Comments" block (is that the right one?) in a specific content area.

Not showing.

kazah’s picture

I'm having the same problem too. I want to add comments to my product. I can't see this block.

brisath’s picture

Version: 6.x-1.0-beta2 » 6.x-1.x-dev
Status: Closed (cannot reproduce) » Active

Subscribe. I'm not seeing any block displaying and #1 and #3 have been checked, so that isn't the issue. All appears to be fine and nothing is showing to comment on the node page.

emcniece’s picture

Ran into this, but found something interesting. As expected, the blocks only show up on pages of content types that have comments enabled in the content type as well as the individual node. However, it will not show up on views-created pages! You'll have to use the Views Attach recommendation for that :)

Check which pages you're requesting that the blocks show up on, and try creating a normal, static page with comments enabled to see if the blocks show up.

Luki_be’s picture

Same problem but i have it randomly: some products show the comment block but without the form, others don't show anything. #1 and #3 are checked.

The block only works for user with admin rights: no problem whatsoever.

Luki_be’s picture

Seems this problem is reported over one year ago ... is this module still maintained or do we need to look for greener pastures?

muka’s picture

Hi,
try that: line 61 of commentblock.module
- if (user_access('post comments') && $node->comment > 1) {
+ if ((user_access('post comments') || user_access('post comments without approval')) && $node->comment > 1) {

Luki_be’s picture

I went to greener pastures ... solved it with the panels module