• Hello Julio and plugin team.

    The registration page your plugin uses is the default wordpress page, https://multiproj.com.br/site/wp-login.php?action=register

    How can I change it to a different registration page? I was trying o use links with #bawregister# but does not work. Maybe you or someone else can add a custom link section, many sites have custom login/logout/register pages.

    This will make your good plugin even better.

    PS: And I also was unable to get rid of “Are you sure you want to logout?” message, but the custom links are much more important.

    PS2: Would you like a Portuguese translation? I can do it for free to colaborate with your work and help a litte.

    https://www.ads-software.com/plugins/baw-login-logout-menu/

Viewing 3 replies - 1 through 3 (of 3 total)
  • +1 for this
    I would like to send my members to a custom login page, not the generic WP login page. I tried the code provided on the thread “Alternative Login Page” to send them to my custom page but that seems to override my custom page with the generic WP login page.

    Looks like not much feedback from the developer on these threads. Hoping someone else may have a solution.

    +1 for this as well. Why is it so difficult to direct a user to the location necessary – being a custom login page not generic WP full page login.

    Better way not to modify the theme use a filter

    The bellow code will use https://your-site/registration-form as registration page.

    and for login/logout the plugin supports using custom page check menu settings.

    add_filter( 'bawregister_item', 'redirect_registration');
    function redirect_registration($item){
    	if (! is_user_logged_in()){
    	    $item->url = '/registration-form/';	
    	    $item->title = 'Registration';
    	}
    	return $item;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Custom registration page’ is closed to new replies.