Re: HOW TO: change order of the sign-up extra fields
thanks again Burt
ok, i figured it out… had to do some reading… damn reading
the position of each plugin is normally decided by the “add_action”
i.e. to move recaptcha to the very bottom, the priority must be lower than the rest…
in wp-recaptcha.php – line 50
add_action(‘sign_up_extra_fields’, ‘display_recaptcha’ );
changed to:
add_action(‘sign_up_extra_fields’, ‘display_recaptcha’, ’20’ );
probably didn’t need to be as high as 20, but i want to make sure it’s on the far bottom
next i’ll go into bp-tos.php and change that add_action to 21….we’ll see if that works