Bug In Registering

This topic contains 5 reply and 2 voices, and was last updated by saku4388 10 years, 7 months ago
Viewing 5 Posts - 1 through 5 (of 5 total)
Author Posts
September 18, 2013 at 12:18 am 8264
saku4388 Hi I found a bug when a user try to register with the above url "site.com/wp-login.php?action=register" he can easily signup. The above thing also work if the option "Registration link override" is selected in FrontEnd Pro Setting. Please fix this, otherwise user can easily register on the site without using the form. I know this is for the advanced users, but it need to be fixed. Thanks
September 18, 2013 at 11:34 am 8266
Tareq Hasan Tareq Hasan

That page was never overrided, only the link was.

Anyway, if you want to redirect users to your own register page, follow this code:
[php]
function wpuf_signup_redirect() {
global $pagenow;

if ( wpuf_get_option( ‘register_link_override’, ‘wpuf_profile’ ) != ‘on’ ) {
return;
}

if ( $pagenow == ‘wp-login.php’ && isset( $_GET[‘action’] ) && $_GET[‘action’] == ‘register’ ) {
$reg_page = get_permalink( wpuf_get_option( ‘reg_override_page’, ‘wpuf_profile’ ) );
wp_redirect( $reg_page );
exit;
}
}

add_action( ‘init’, ‘wpuf_signup_redirect’ );
[/php]

September 18, 2013 at 11:56 am 8267
saku4388 saku4388

Thanks, Work Like A Charm.

You must provide this feature in next update so user can select It from FrontEnd Setting along with the Registration link override.

September 19, 2013 at 12:09 am 8294
Tareq Hasan Tareq Hasan

Version 2.1.8 has just been released and this feature is included.

September 19, 2013 at 12:27 am 8296
saku4388 saku4388

🙂

Thanks, you added all the features i needed to run my project.

You guys are just Wowsome..

Thanks ‘n’ Regards,
Shabir Virk

September 19, 2013 at 12:44 am 8297
saku4388 saku4388

Tag Auto Complete Feature is Awesome But please note one thing.

I created many Custom taxonomy which are same like tag but the auto complete is not working on them.

so note it down, in next version please add this feature too.

Surely it will comes handy for many users.

Thanks ‘n’ Regards,
Shabir Virk

Viewing 5 Posts - 1 through 5 (of 5 total)