Forked from kimcoleman/redwolfcy_pmprorh_init.php
Last active
March 22, 2021 10:35
-
-
Save JarrydLong/f915e77b07271b5b2c8e6cb35d3a3bb2 to your computer and use it in GitHub Desktop.
Register Helper "Phone" Field
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 | |
| /** | |
| * Register Helper "Phone" Field | |
| * | |
| */ | |
| function pmprorh_init_phone_field() { | |
| //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( | |
| 'phone', | |
| 'text', | |
| array( | |
| 'label' => 'Phone', | |
| '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( | |
| 'checkout_boxes', | |
| $field | |
| ); | |
| } | |
| } | |
| add_action( 'init', 'pmprorh_init_phone_field' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment