Good morning Drupal,
Need some advice in handling the core comments module. Right now the comments on my product page show up above the last block i have. I'm looking for a way to get the block above the comments, i.o.w. get the comments at the bottom of the content ... Sadly Drupal 6 doesn't have a system to handle comments like a block. I tried most modules but all of them have some bugs that doesn't get me the desired result. Has anybody else encountered this problem and if so, any solutions to alter the position of the comments? I tried minipanels but i can't seem to get comments and the commentform together as a content to add ...
Hello Luc,
What I understand is that you want to place a block between the comments section and the node data. This can be achieved via some custom code. You can add any block data to the $node object - check this - http://drupal.org/node/164799 then print anywhere you want in the TPL. Hope that helps :)
On Thu, Mar 22, 2012 at 7:35 PM, Luc Luc@dzinelabs.com wrote:
Good morning Drupal,
Need some advice in handling the core comments module. Right now the comments on my product page show up above the last block i have. I'm looking for a way to get the block above the comments, i.o.w. get the comments at the bottom of the content ... Sadly Drupal 6 doesn't have a system to handle comments like a block. I tried most modules but all of them have some bugs that doesn't get me the desired result. Has anybody else encountered this problem and if so, any solutions to alter the position of the comments? I tried minipanels but i can't seem to get comments and the commentform together as a content to add ...
-- Regards, Luc _________________________
-- [ Drupal support list | http://lists.drupal.org/ ]
Good afternoon Vaibhav,
Thank you for your swift reply. I looked at the discussion but it went a bit over my head as i'm not an experienced coder sadly enough.
VJ> This can be achieved via some custom code. VJ> You can add any block data to the $node object - check this - VJ> http://drupal.org/node/164799 VJ> then print anywhere you want in the TPL. VJ> Hope that helps :)