Hi @njorobale!
By default we are only displaying the buttons in places where the wp_login_form action was used to create the login form. When the login form is customized, the hooks which are used to call in other codes aren’t existing, so in that case you could use the shortcode of the buttons:
https://nextendweb.com/nextend-social-login-docs/usage/
In case the custom login’s code has to be modified, we have a PHP code, which can be used:
https://nextendweb.com/nextend-social-login-docs/theme-developer/
<?php if(class_exists('NextendSocialLogin', false)){ NextendSocialLogin::renderButtonsWithContainer(); } ?>
but WordPress’ do_shortcode function can be used too, to display a shortcode:
<?php do_shortcode('[nextend_social_login]'); ?>
Just please note, that we do not support custom coding, so we only suggest using these codes for developers.
Additional note: In the Pro version you can automatically show the social buttons in forms we have integration for, including WooCommerce. If you are interested about it, please contact us through our ticket system:
https://nextendweb.com/contact-us/nextend-social-login-support/
as this is a Forum reserved for Free plugins, so we cannot provide support for commercial products, including our Pro version.