Pictures of Slick carousel do now show only after coming back from a successful Facebook Connect

爷,独闯天下 提交于 2019-12-23 04:34:16

问题


I am using Slick carousel for this testimonials box:

I have this button to log in using Facebook:

Immediately after a successful Facebook Connect login, the Slick carousel still works but all pictures are broken:

If I click around for example by clicking the logo of the home page to reload the page, everything is fixed and the pictures appear again correctly. What could be the cause of this bug? I noticed that after logging in with Facebook, the URL changes from https://example.net/San-salvador/ to https://example.net/San-salvador/#=. I thought that this #= that is appended might be the cause of the problem and I used this JavaScript code to remove it:

jQuery(document).ready(function($) {
    // Remove #_=_ string from URL when using Facebook Connect.
    if (window.location.href.indexOf('#_=_') > 0) {
        window.location = window.location.href.replace(/#.*/, '');
    }
    ....
    ....
    ....
}

The #= is not appended to the URL anymore, Facebook Connect still works correctly, but the bug is not fixed. Anyone experiencing this bug too and knowing the fix?

I am using Facebook PHP SDK (v.3.2.3): https://github.com/facebookarchive/facebook-php-sdk. I know it is deprecated, but could that be the reason why I am experiencing this bug?


回答1:


Check the following things to figure out what exactly goes wrong:

  • Have you checked the browser console to see what it says?
  • Are the image URLs presumably mentioned there as you expect them to be?
  • How are you referring the images in your code - relative URLs, relative to the domain root, absolute?

If the main document URL changes (as figured out in the meantime, in comments), then your best bet is probably to use image URLs that are relative to the domain root, beginning with a leading slash:

/path/to/images/file.jpg

- no matter what the URL path of the current page is, this will always point to the same location.



来源:https://stackoverflow.com/questions/52376127/pictures-of-slick-carousel-do-now-show-only-after-coming-back-from-a-successful

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!