WordPress Login And Registration Plugin | Actions Pack for Elementor Pro

by | Dec 22, 2021 | 0 comments

WordPress Login And Registration Plugin | Actions Pack for Elementor Pro

by | Dec 22, 2021 | Free Wordpress Plugins | 0 comments



The Actions Pack for Elementor Pro is a WordPress Login And Registration Plugin that’s worth taking a look at. that’s exactly what I’ll be doing today.

I’m going to show you exactly how to do the following:

✅ Building the 3 key pages: Login, Register & Lost Password
✅ Setting up the login page
✅ Mapping the fields
✅ Setting up redirection based on user role
✅ Setup replacement of the default login page
✅ Setting up the registration page
✅ Create links to lost password and login pages
✅ Setting up the lost password page
✅ Create 2 WordPress functions to handle the redirection of the Registration & Lost Password pages.

✅ Buy Elementor Pro:
✅ Buy Actions Pack:

Timestamps:
00:00 – Introduction
00:38 – What we’ll be building
01:49 – Actions Pack for Elementor Plugin
03:51 – Creating the 3 key pages
04:34 – Building the Login Page function
12:11 – Building the Registration page
19:09 – Building the Lost Password page
23:01 – Adding the redirection code
25:57 – What next?

// Redirect Registration Page
function my_registration_page_redirect()
{
global $pagenow;

if ( ( strtolower($pagenow) == ‘wp-login.php’) && ( strtolower( $_GET[‘action’]) == ‘register’ ) ) {
wp_redirect( home_url(‘/registration’));
}
}

add_filter( ‘init’, ‘my_registration_page_redirect’ );

// Redirect Password Page
function my_password_page_redirect()
{
global $pagenow;

if ( ( strtolower($pagenow) == ‘wp-login.php’) && ( strtolower( $_GET[‘action’]) == ‘lostpassword’ ) ) {
wp_redirect( home_url(‘/lost-password’));
}
}

add_filter( ‘init’, ‘my_password_page_redirect’ );

Take your WordPress website and skills to the next level!

► THE TOOLS I LOVE ◄
If you like what we do and would like to support us, please consider using these affiliate links when purchasing any of the plugins covered in our tutorials. Thank you for your support.

► MY PREFERRED HOSTING PROVIDERS ◄
✅ CloudWays:
✅ SiteGround:

► WORDPRESS VISUAL PAGE BUILDERS ◄
✅ ELEMENTOR PRO:
✅ Brizy Pro:
✅ DIVI 3 Page Builder:

► WORDPRESS THEMES ◄
✅ GeneratePress Premium:
✅ OCEANWP:
✅ DIVI Theme:
✅ Astra Pro:

► WORDPRESS TOOLS ◄
✅ SMART SLIDER 3:
✅ CSSHERO:

► WORDPRESS PLUGINS ◄

✅ SEOPress Pro:

► SUBSCRIBE ◄

► LETS CONNECT: ◄

SUPPORT: Our website offers additional information and perks. Please check it out!

source