• Resolved jdweb

    (@jdweb)


    I am currently using a different plug in for this. It allows people to login with Facebook and it makes a user account with the profile picture as avatar. I then have a review plug in which shows the profile picture.

    The plug in I am using works great on a PC, but I have just noticed that it is not working on a mobile device (both phone and tablet). I can still log in but the avatar is shown as the default “mystery man” avatar.

    Does your plugin show the profile picture as a users avatar both on PC and mobile devices?

    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Claude

    (@claudeschlesser)

    Hello,

    yes, it should work on mobile devices, and if it does not work, then we will help you fix it ??

    Regards,

    Thread Starter jdweb

    (@jdweb)

    Hi
    Thanks for the reply. I have gone ahead and installed and setup the plugin. Everything works great on PC and mobile alike.

    Just one question. Is there a way to not have their username linked to their facebook page? I still of course want the username displayed just not as a link.

    Thanks again.

    Plugin Author Claude

    (@claudeschlesser)

    Hello,

    you can add the following code to the functions.php file of your theme:

    // Remove the user's social network profile url
    function oa_social_login_remove_url ($user_fields)
    {
    	$user_fields['user_url'] = '';
    	return $user_fields;
    }
     
    // This filter is applied to new users
    add_filter('oa_social_login_filter_new_user_fields', 'oa_social_login_remove_url');

    This will remove the user’s social network profile url from it’s profile.
    Please note that this only applies to new users.

    Regards,

    Thread Starter jdweb

    (@jdweb)

    Thanks so much for your fast reply. Everything is working great. I will have to check out your other plugins.

    Thanks again

    Plugin Author Claude

    (@claudeschlesser)

    Thank you!

    Do not forget to leave us your review!
    https://www.ads-software.com/support/plugin/oa-social-login/reviews/

    ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Does this work on Mobile devices’ is closed to new replies.