Skip to content

Instantly share code, notes, and snippets.

@travislima
Created August 2, 2016 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save travislima/be45f5f2f82379b6305d092959b27280 to your computer and use it in GitHub Desktop.
Save travislima/be45f5f2f82379b6305d092959b27280 to your computer and use it in GitHub Desktop.
Adding telephone field using Register Helper
<?php
//copy from line 5 downwards into your customization plugin
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(
"Telephone", // input name, will also be used as meta key
"text", // type of field
array(
"label" => "Telephone Number",
"size"=>30, // input size
"profile"=>true, // show in user profile
"required"=>true // make this field required
));
//add the fields into a new checkout_boxes are of the checkout page
foreach($fields as $field)
pmprorh_add_registration_field(
"after_billing_fields", // 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");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment