Hello everyone,

ZenCart version: 1.5.4

I am quite confused where I can get some help with this problem. I spent more than 1 hour looking where to address this problem and unfortunately I am still not sure if this is the right place. So I appologize in advance.

Here is my problem:

Yesterday I noticed that my page plugin in my web page dosn't appear.

When I open the the facebook page regarding with social plugins : https://developers.facebook.com/docs...ns/page-plugin
and introduce my facebook web addres page in order to generate the valid code for my page (https://www.facebook.com/nyvinhus.dk/), facebook doesn't open or recognize it as valid link.

I tried to change all the code that currently is provided from Facebook but it still not working. I must metiontion that so far everything was working great. So far I was using this addres: "https://www.facebook.com/NYVINHUSDK-474098722800232"
Now it doesn't open it at all. I change it to the simpliest addres: "https://www.facebook.com/nyvinhus.dk" as it shown on the address bar. Still not recognizing it.

My page-plugin should appear in the bottom left corner of my web page "www.nyvinhus.dk".

I was using the code:

<div id="fb-root"></div>
<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_GB/sdk.js#xfbml=1&version=v2.6";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>


Then I changed it to:

<div id="fb-root"></div>
<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_GB/sdk.js#xfbml=1&version=v2.8";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

After that I used the code to add the page plugin to my web page with this code, provided by facebook:

<div class="fb-page" float="right"
data-href="https://www.facebook.com/NYVINHUSDK-474098722800232"
data-width="360"
data-hide-cover="false"
data-show-posts="false"
data-show-facepile="false">

And ofcourse I tried any kind of address of my facebokk page to change, but still not working.

Do you have any idea why is happening that? And what I can do in order to solve my problem?