Last active
August 3, 2021 06:21
-
-
Save pbrocks/4c705924673f5b6acc9034737d5048af to your computer and use it in GitHub Desktop.
Add the billing fields created by Paid Memberships Pro to your user Profile for easy editing and inclusion in the Members List CSV.
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 2 - Billing to Profile | |
| * | |
| * Add PMPro billing fields to the edit user profile page. | |
| * | |
| * You must have installed both Paid Memberships Pro and the Register Helper plugins | |
| * | |
| * https://github.com/strangerstudios/pmpro-register-helper | |
| */ | |
| function add_billing_fields_to_profile() { | |
| global $pmpro_countries; | |
| // check for register helper | |
| if ( ! function_exists( 'pmprorh_add_registration_field' ) ) { | |
| return; | |
| } | |
| // define the fields | |
| $fields = array(); | |
| $fields[] = new PMProRH_Field( | |
| 'pmpro_baddress1', | |
| 'text', | |
| array( | |
| 'label' => 'Billing Address 1', | |
| 'size' => 40, | |
| 'profile' => true, | |
| 'required' => false, | |
| ) | |
| ); | |
| $fields[] = new PMProRH_Field( | |
| 'pmpro_baddress2', | |
| 'text', | |
| array( | |
| 'label' => 'Billing Address 2', | |
| 'size' => 40, | |
| 'profile' => true, | |
| 'required' => false, | |
| ) | |
| ); | |
| $fields[] = new PMProRH_Field( | |
| 'pmpro_bcity', | |
| 'text', | |
| array( | |
| 'label' => 'Billing City', | |
| 'size' => 40, | |
| 'profile' => true, | |
| 'required' => false, | |
| ) | |
| ); | |
| $fields[] = new PMProRH_Field( | |
| 'pmpro_bstate', | |
| 'text', | |
| array( | |
| 'label' => 'Billing State', | |
| 'size' => 10, | |
| 'profile' => true, | |
| 'required' => false, | |
| ) | |
| ); | |
| $fields[] = new PMProRH_Field( | |
| 'pmpro_bzipcode', | |
| 'text', | |
| array( | |
| 'label' => 'Billing Postal Code', | |
| 'size' => 10, | |
| 'profile' => true, | |
| 'required' => false, | |
| ) | |
| ); | |
| $fields[] = new PMProRH_Field( | |
| 'pmpro_bcountry', | |
| 'select', | |
| array( | |
| 'label' => 'Billing Country', | |
| 'profile' => true, | |
| 'required' => false, | |
| 'options' => array_merge( array( '' => '- choose one -' ), array( $pmpro_countries ) ), | |
| ) | |
| ); | |
| $fields[] = new PMProRH_Field( | |
| 'pmpro_bphone', | |
| 'text', | |
| array( | |
| 'label' => 'Billing Phone', | |
| 'size' => 40, | |
| 'profile' => true, | |
| 'required' => false, | |
| ) | |
| ); | |
| // add the fields into a new checkout_boxes are of the checkout page | |
| foreach ( $fields as $field ) { | |
| pmprorh_add_registration_field( 'profile', $field ); | |
| } | |
| } | |
| add_action( 'init', 'add_billing_fields_to_profile' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment