Hi, I would like to activate the "Register" link in the upper right corner of the header. Currently, the link only goes to "Login". The text is: Login or Register
I want it to have both the Login (link) and the Register (link)
I assume it is in the header-v2.php file.
Can you tell me how to add that?
I did successfully add "Welcome" to appear before the user name (when logged in) by tweaking your code:
You need to enable Customer Registration in WooCommerce > Settings > Accounts (see my attached file). You will see the registration form in your my account page https://drstoystore.staging.wpengine.com/my-account/
Hi, I would like to activate the "Register" link in the upper right corner of the header. Currently, the link only goes to "Login". The text is: Login or Register
I want it to have both the Login (link) and the Register (link)
I assume it is in the header-v2.php file.
Can you tell me how to add that?
I did successfully add "Welcome" to appear before the user name (when logged in) by tweaking your code:
<?php if( is_user_logged_in() ): ?>
<div class="user-info">
<?php
$current_user = wp_get_current_user();
echo "Welcome, ";
echo $current_user->display_name;
?>
</div>
<?php endif; ?>
Thank you!
Randy
Hi Randy,
You need to enable Customer Registration in WooCommerce > Settings > Accounts (see my attached file). You will see the registration form in your my account page https://drstoystore.staging.wpengine.com/my-account/
Best regards,