Skip to content

Instantly share code, notes, and snippets.

@andrewlimaza
Last active February 19, 2019 23:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrewlimaza/5e3bf53e1d0afc413696 to your computer and use it in GitHub Desktop.
Save andrewlimaza/5e3bf53e1d0afc413696 to your computer and use it in GitHub Desktop.
Adding custom fields for Register Helper Pro (PMPRO)
/*
Plugin Name: Register Helper Customizations
Plugin URI: http://www.paidmembershipspro.com/wp/pmpro-customizations/
Description: Register Helper Customizations
Version: 1.0.0
Author: StrangerStudios
Author URI: http://www.paidmembershipspro.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(
"shipped",
"select",
array(
"label"=>"Shipped",
"profile"=>"only_admin",
"options"=>array(
"no"=>"NO",
"yes"=>"YES"
)));
$fields[] = new PMProRH_Field(
"shirtsize",
"select",
array(
"label"=>"Shirt Size",
"profile"=>true,
"options"=>array(
"small"=>"SMALL",
"medium"=>"MEDIUM",
"large"=>"LARGE",
"xlarge"=>"X-LARGE",
"xxlarge"=>"XX-LARGE"
)));
//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
);
//that's it. see the PMPro Register Helper readme for more information and examples.
}
add_action("init", "my_pmprorh_init");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment