I'm using the Themed Login & Registration plugin and also Andrew Ferguson's Force User Field Registration plugin. The problem is that they don't go together.
TLR overrides wp-register.php and FURF plugin places hooks in wp-login.php.
How would I make the required fields I configured in FURF to show up in the form in TLR?
Bump. Hope someone can help.
As pointed in "Cimy User Extra Field" documentation:
edit the plug-in “Themed Login” and at line 871 (just before “A password will be emailed to you.”) add this (without space between “<", "?" and "php"):
< ? php do_action('register_form'); ?>
and then (as pointed out here by me :) ), try to add
do_action('register_post');
before
if ( 0 == count($errors) ) {
around line 812.
I don't know if it works 'cause I've done others modifies in my installation. Let me know.
Ah, and comment "$error = Array();" and put it as a "global" just after "function jk_do_login()".
Should be all.