Jump to content

Drupal: login/register form should appear below post


thestars

Recommended Posts

hi,

In my drupal site, I have enabled comments for blog content type and only registered users can post comments.So users not logged in will see  'Login or register to post comments' below each post. It links to login/register form on a seperate page. I need the login/register form to appear below the post. How can I accomplish this?

  • 2 weeks later...

Dude,

 

Try with nodeapi hook as follows

 

function mymodule_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL){

if($node->type == 'blog'){

switch($op){

case 'view':

global $user;

if($user->uid == 0){

$node->content['show_login'] = array('#value' => drupal_get_form('user_login_block'),

  '#weight' => 99);

}

break;

}

}

}

 

 

hope this will help you............

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.