How to make login and signup form page for woocommerce

The best wordpress plugins for login and registration form my-account single page in woocommerce site and "User registration" plugin install and create custom signup form User registration plugin and shortcode replace with bellow shortcode. and install woocommerce login plugin for woocommerce login form page Woocommerce Login / Signup Lite and shortcode replace with bellow shortcode.

Login and registration form page for woocommerce site

The bellow php code copy and paste on PHP Snippet and keep this one bellow code in my-account form page woocommerce.

<?php
if ( is_user_logged_in() ) {
echo do_shortcode( '[woocommerce_my_account]' );
} else {
?>
<div class="row">
<div class="col-sm-6">
<h2>Login form</h2>
<?php echo do_shortcode( '[lsphe-login-form]' ); ?></div>
<div class="col-sm-6">
<h2>Sign up</h2>
<?php echo do_shortcode( '[user_registration_form id="3145"]' ); ?></div>
</div>
<?php
}
?>

Post a Comment

0 Comments