[b2bking_b2b_registration] works in a 2 column way. I need to put those forms one under another or at least put a link on top of the registration form to redirect people to login.
1) [b2bking_b2b_registration] works in a 2 column way. I need to put those forms one under another
I think you can do this with CSS.
Can you give me a link to your registration page? I would need to see the registration page, because every theme is different. I think I can give you a CSS snippet to put the columns on top of each other.
2) put a link on top of the registration form to redirect people to login.
Generally speaking, you can add something above registration with a snippet, such as:
add_action('woocommerce_register_form_start', function(){
echo '<a href="#">Your custom link here</a>';
});
How do I show only the login boxes?
[b2bking_b2b_registration] works in a 2 column way. I need to put those forms one under another or at least put a link on top of the registration form to redirect people to login.
Hi Kamil,
1) [b2bking_b2b_registration] works in a 2 column way. I need to put those forms one under another
I think you can do this with CSS.
Can you give me a link to your registration page? I would need to see the registration page, because every theme is different. I think I can give you a CSS snippet to put the columns on top of each other.
2) put a link on top of the registration form to redirect people to login.
Generally speaking, you can add something above registration with a snippet, such as:
add_action('woocommerce_register_form_start', function(){ echo '<a href="#">Your custom link here</a>'; });Which would result in:
Kind regards,
Stefan