Created
March 6, 2019 17:04
-
-
Save kimcoleman/cf80b0faf194a0b2cd4cc234cfe996b4 to your computer and use it in GitHub Desktop.
Adds a Register Helper "My Extra Field" input after billing fields.
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 | |
/** | |
* Adds a Register Helper "My Extra Field" input after billing fields. | |
*/ | |
function sample_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( | |
'new_field', | |
'text', | |
array( | |
'label' => 'My Extra Field', | |
'profile' => true, | |
'required' => true | |
) | |
); | |
//add the fields into a new checkout_boxes are of the checkout page | |
foreach ( $fields as $field ) { | |
pmprorh_add_registration_field( | |
'after_billing_fields', | |
$field | |
); | |
} | |
} | |
add_action( 'init', 'sample_pmprorh_init' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment