Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kimwhite/d4dac6feef6e988376a74180b0c85240 to your computer and use it in GitHub Desktop.
Save kimwhite/d4dac6feef6e988376a74180b0c85240 to your computer and use it in GitHub Desktop.
Move Name And Last Name fields
<?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