Created
March 4, 2019 10:13
-
-
Save ipokkel/134bd4f66237c2c70e01999b0334b0e3 to your computer and use it in GitHub Desktop.
Paid Memberships Pro Register Helper: Add license number and full name
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: PMPro Customizations | |
Plugin URI: https://www.paidmembershipspro.com/wp/pmpro-customizations/ | |
Description: Customizations for my Paid Memberships Pro Setup | |
Version: .1 | |
Author: Paid Memberships Pro | |
Author URI: https://www.paidmembershipspro.com | |
*/ | |
//Now start placing your customization code below this line | |
/** | |
* This adds fields to your Paid Memberships Pro checkout and profile page. | |
* Add this code to your PMPro Customizations Plugin - https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/ | |
* www.paidmembershipspro.com | |
*/ | |
function my_pmprorh_init() | |
{ | |
//don't break if Register Helper is not loaded | |
if(!function_exists( 'pmprorh_add_registration_field' )) { | |
return false; | |
} | |
$fields = array(); | |
$fields[] = new PMProRH_Field( | |
'license_number', | |
'text', | |
array( | |
'label' => 'License number', | |
'required' => true, // make this field required | |
'profile' => true, // show in user profile | |
'memberslistcsv' => true, /* Uncomment to include in Memberlist CSV */ | |
// "addmember" => true, /* Uncomment if using the Admin Add Member plugin */ | |
) | |
); | |
$fields[] = new PMProRH_Field( | |
'full_name', // input name, will also be used as meta key | |
'text', // type of field | |
array( | |
'label' => 'Full name (this serves as your digital signature)', // custom field label | |
'required' => true, // make this field required | |
'profile' => true, // show in user profile | |
'memberslistcsv' => true, // Uncomment to Include in Member List CSV Export | |
// 'addmember' => true, // Uncomment to display in Add Member | |
) | |
); | |
//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' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment