• Resolved Saleh

    (@kekuleh)


    Hello.
    I have been using this plugin for about a month and it was working great.

    Suddenly today the Facebook login button stopped appearing. I enabled Facebook and Google+ logins, but only G+ is showing. There wasn’t any changes made on my site since yesterday. No new plugins or updates installed that could explain this.

    If you go to the login page: https://www.kahwinlife.com/my-account/ and use inspect element, you can see that the code for both Facebook and Google logins are there, but the FB button just doesn’t appear.

    Please advise.
    Thanks

Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author Heateor Support

    (@heateor)

    I have this issue too, after use the custom code fb icon will showing. but very hard to click on Mobile. how to make those icon moving right a liitle ?

    Plugin Author Heateor Support

    (@heateor)

    @bboyfan, We are not sure what you mean by “…how to make those icon moving right a liitle”.

    SORRY for my poor english lol.

    I just test different browser and mobile. if I use your custom css code let Facebook icon show up. the icon can not click.

    you could try.
    https://shop.chef-clean.com/account

    Plugin Author Heateor Support

    (@heateor)

    @bboyfan
    We checked the webpage you just mentioned and found that plugin’s Javascript files are not being loaded at the webpage that’s why Social Login is not working. You would like to let your website developer know this.

    @heateor could you told me what file not being loaded ? that could help me fixed. thank you.

    Plugin Author Heateor Support

    (@heateor)

    @bboyfan Ignore previous reply. Sorry.
    The problem seems to be due to following Facebook SDK code appearing in HTML source of your webpage:

    <script type="text/javascript">jQuery(document).ready(function () {
                            window.fbAsyncInit = function () {
                                FB.init({
                                    appId: "",
                                    xfbml: true,
                                    version: 'v2.6'
                                });
                            };
                            console.log('loaded script . . . . . ');
                            (function (d, s, id) {
                                var js, fjs = d.getElementsByTagName(s)[0];
                                if (d.getElementById(id))
                                    return;
                                js = d.createElement(s);
                                js.id = id;
                                                    js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.0";
                                                    fjs.parentNode.insertBefore(js, fjs);
                            }(document, 'script', 'facebook-jssdk'));......
    ..........................
    ...........................

    appId property is blank in above code. Use the same App ID you are using for Facebook Login, in the above code, so it becomes following:

    <script type="text/javascript">jQuery(document).ready(function () {
                            window.fbAsyncInit = function () {
                                FB.init({
                                    appId: "1586227024982632",
                                    xfbml: true,
                                    version: 'v2.6'
                                });
                            };
                            console.log('loaded script . . . . . ');
                            (function (d, s, id) {
                                var js, fjs = d.getElementsByTagName(s)[0];
                                if (d.getElementById(id))
                                    return;
                                js = d.createElement(s);
                                js.id = id;
                                                    js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.0";
                                                    fjs.parentNode.insertBefore(js, fjs);
                            }(document, 'script', 'facebook-jssdk'));......
    ..........................
    ...........................

    @heateor

    sorry but I cant find where can fixed that issue. my other fb plugin such like ads pixel is working fine. I also have try other login plugin also have not this problem ” but have some other issue ToT” .

    could you told me how to fixed that blank code ?thank you

    Plugin Author Heateor Support

    (@heateor)

    @bboyfan, only you can tell which plugin/functionality is inserting above code.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Facebook Login Doesn’t Appear’ is closed to new replies.