Skip to content

Instantly share code, notes, and snippets.

@strangerstudios
Forked from messica/my_pmprorh_init.php
Last active October 31, 2020 00:41
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save strangerstudios/752af0799b0a8e6caf10 to your computer and use it in GitHub Desktop.
Save strangerstudios/752af0799b0a8e6caf10 to your computer and use it in GitHub Desktop.
<?php
/*
Plugin Name: Register Helper Example
Plugin URI: http://www.paidmembershipspro.com/wp/pmpro-customizations/
Description: Register Helper Initialization Example
Version: .1
Author: Stranger Studios
Author URI: http://www.strangerstudios.com
*/
//we have to put everything in a function called on init, so we are sure Register Helper is loaded
function my_pmprorh_init()
{
//don't break if Register Helper is not loaded
if(!function_exists( 'pmprorh_add_registration_field' )) {
return false;
}
//define the fields
$fields = array();
$fields[] = new PMProRH_Field(
'company', // input name, will also be used as meta key
'text', // type of field
array(
'label' => 'Company' , // custom field label
'size' => 40, // input size
'class' => 'company', // custom class
'profile' => true, // show in user profile
'required' => true, // make this field required
'levels' => array(1,2) // only levels 1 and 2 should have the company field
)
);
$fields[] = new PMProRH_Field(
'referral', // input name, will also be used as meta key
'text', // type of field
array(
'label' => 'Referral Code', // custom field label
'profile' => 'only_admin' // only show in profile for admins
)
);
$fields[] = new PMProRH_Field(
'gender', // input name, will also be used as meta key
'select', // type of field
array(
'options' => array( // <option> elements for select field
'' => '', // blank option - cannot be selected if this field is required
'male' => 'Male', // <option value="male">Male</option>
'female'=> 'Female' // <option value="female">Female</option>
)
)
);
//add the fields into a new checkout_boxes are of the checkout page
foreach($fields as $field)
pmprorh_add_registration_field(
'checkout_boxes', // location on checkout page
$field // PMProRH_Field object
);
//that's it. see the PMPro Register Helper readme for more information and examples.
}
add_action( 'init', 'my_pmprorh_init' );
@rfdc
Copy link

rfdc commented Mar 9, 2018

Is there a way to add DOB?

@ideadude
Copy link

Forked here because I can't update strangerstudios' gists anymore and gender is a bad field to use for the example.

https://gist.github.com/ideadude/09160fdeebb1d1b07f4e9577cba6d128

@ideadude
Copy link

Is there a way to add DOB?

Yes. You can use the "date" field type.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment