• Resolved Harley Leung

    (@suongliang)


    Hello, may I ask if this plugin provides registeration via social networks ? I looked inside the shortcode and added it to my php file but on the live site I don’t see the panel to register with Social media ?

    Here is my php file

    <?php 
    /*
    Template Name: Sign Up page
     */
    get_header();
    ?>
     <div class="container sign-up-form">
    <?php if (!is_user_logged_in()) { ?>
       
        <div>
            <?php echo do_shortcode("[wppb-register]"); ?>
        </div>
         <!-- Social login -->
         <?php echo do_shortcode('[miniorange_social_login theme="default"]') ?>
            <!-- End social login -->
    
    <?php }else{
        echo do_shortcode('[miniorange_social_login theme="default"]');
    }?>
    </div>
    <?php 
    get_footer();
    ?>
    • This topic was modified 7 years, 4 months ago by Harley Leung.
Viewing 1 replies (of 1 total)
  • Plugin Author miniOrange

    (@cyberlord92)

    Hi Harley Leung,

    Thank you for reaching out to us.

    if this plugin provides registeration via social networks ?

    Yes, this plugin supports registration and login via social networks. Shortcodes for both registration and login are same. We have implemented this plugin such that if any user tries to login with social login options on your website, it will check whether this user has an existing account or not. If he has an existing account it will simply log him in else it will create a new account on your website.

    Also by adding echo do_shortcode(‘[miniorange_social_login]’); this line in php code you can insert shortcode anywhere in your website for both login and registration.

    If you have any further questions, please reach out to us at [email protected]

    Thanks.

Viewing 1 replies (of 1 total)

The topic ‘How to add shortcode for registeration ?’ is closed to new replies.