-
-
Save kimwhite/d4dac6feef6e988376a74180b0c85240 to your computer and use it in GitHub Desktop.
Move Name And Last Name 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 | |
/** | |
* Add the following code to your PMPro Customizations Plugin - https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/ | |
* Move Email And Confirm Email fields before password | |
*/ | |
function pmpro_move_name_fields() { | |
global $pmpro_pages; | |
if(is_page($pmpro_pages['checkout'])) { | |
?> | |
<script> | |
jQuery( '.pmpro_checkout-field-firstname' ).prependTo( '.pmpro_checkout-field-username' ); | |
jQuery( '.pmpro_checkout-field-lastname' ).appendTo( '.pmpro_checkout-field-firstname' ); | |
</script> | |
<?php | |
} | |
} | |
add_action( 'wp_footer', 'pmpro_move_name_fields' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment