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?

Link to comment
Share on other sites

  • 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............

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.