Viewing 1 replies (of 1 total)
  • Plugin Support Gabor

    (@nextendweb_gabor)

    Hi @ayam1!

    We are only displaying the buttons in places, where the wp_login_form action was used to create the login form. For example on your wp-login.php page:
    https://daraja.store/wp-login.php

    In your case, on your homepage when you press the “My account” button and a popup login window appears, that login form was just made by your theme, that is why we cannot automatically detect it.

    If your theme offers an option to add text to this login form, you could use our shortcode, to make the Google button appear:
    https://nextendweb.com/nextend-social-login-docs/usage/

    We also have an option at the Appearance -> Widgets to display the buttons in a widget position:
    https://nextendweb.com/nextend-social-login-docs/nextend-social-login-widget/

    In case the theme’s login form 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]'); ?>

    In this case I suggest getting in touch with the developers of your theme, and ask them about their form, as they should be able to tell you its code’s location easily. They might even have a simple solution, without having to modify the theme’s code.

Viewing 1 replies (of 1 total)

The topic ‘Not showing’ is closed to new replies.