Sewn In Template Log In

plugin banner

Creates a log in page at /login/ and manages password recovery and user notification feedback for the log in process.

Author:Jupitercow (profile at wordpress.org)
WordPress version required:3.6.1
WordPress version tested:4.4
Plugin version:1.1.4
Added to WordPress repository:18-06-2015
Last updated:22-12-2015
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:100
Rated by:1
Plugin URI:https://wordpress.org/plugins/sewn-in-templat...
Total downloads:4 453
Active installs:40+
plugin download
Click to start download

Creates a log in page at /login/ and manages password recovery and user notification feedback for the log in process. Everything gets managed within your page.php template or page-login.php template in order to fit into the theme better.

By default, this plugin creates a virtual page, but if you add a page with slug 'login', the plugin will begin to use that.

Add a redirect for logged in users

Controls where logged in users go when they login or when they visit the '/login/' page. You can either return the post_id of the post/page to send them to, or the slug of the post/page to send them to.

// Redirect using post id
add_filter( 'sewn/login/logged_in_redirect', 'custom_sewn_logged_in_redirect_id' );
function custom_sewn_logged_in_redirect_id()
{
    return 4;
}
// Redirect using post slug
add_filter( 'sewn/login/logged_in_redirect', 'custom_sewn_logged_in_redirect_slug' );
function custom_sewn_logged_in_redirect_slug()
{
    return 'post-slug';
}

Sewn In Notification Box Support

If you install the Sewn In Notification Box, this plugin will start using that. This is handy to keep all of your notifications in a centralized location.


Screenshots
FAQ
ChangeLog