How do I not allow users to make signup available on registration page? Basically I don't want users having the ability to make signup for their node available on the user registration page so I want to remove the code so that, the field does not show up.

Comments

cooldeeponline’s picture

Status: Active » Needs work

I know hacking the module isn't the right way.. but since I had no other alternative at the moment I had to use this:

comment the following lines in the file signup/includes/node_form.inc in line 157:

/*$form['signup']['signup_user_reg'] = array(
      '#type' => 'checkbox',
      '#title' => t('Users can sign up for this event from the user registration form.'),
      '#description' => t('If selected, new users will be able to sign up for this event when they register.'),
      '#default_value' => $node->signup_user_reg_form,
    );*/
cooldeeponline’s picture

Issue summary: View changes

Missing words