Skip to content

Instantly share code, notes, and snippets.

@amdrew
Created January 18, 2014 04:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amdrew/8486389 to your computer and use it in GitHub Desktop.
Save amdrew/8486389 to your computer and use it in GitHub Desktop.
Move the user fields in Easy Digital Downloads to after the register fields
<?php
// remove/unhook the user info fields
remove_action( 'edd_register_fields_before', 'edd_user_info_fields' );
// add/rehook the user info fields to after the register fields
add_action( 'edd_register_fields_after', 'edd_user_info_fields' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment