Hi Team
I am created Facebook messenger bot I want to add that bot in my Shopify website. I did this following steps but it's not showing messenger logo on the website.
Steps are as follow:
1. On Facebook
2. On Shopify
Then also it's not showing the messenger icon on website. Can you please guide me to resolve this?
Hi solve the error by the changing the script
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script>
$(document).ready(function()
{
$.ajax(
{
url: '//connect.facebook.net/en_US/sdk.js',
dataType: 'script',
cache: true,
success:function(script, textStatus, jqXHR)
{
FB.init(
{
appId : '{your-app-id}',
xfbml : true,
version : 'v2.8'
}
);
$('#loginbutton,#feedbutton').removeAttr('disabled');
FB.getLoginStatus(updateStatusCallback);
}
});
});
</script>
User | Count |
---|---|
1 | |
1 | |
1 | |
1 | |
1 |