Reputation: 375
I want to use the Facebook comment plugin, so I flow this link
I succeed to integrate the Plugin in my Joomla page.
I added the meta tag below to my page's header:
<meta property="fb:admins" content="{YOUR_FACEBOOK_USER_ID}"/>
The Plugin is working I can add comments to my content, but I can't moderate them in moderation tools.
PS: I'm using the plugin in my localhost but the URL in data-href
is on line.
I tried to create a Facebook application and fill the App domain
and "Web site URL" with the same URL that used in data-href
.
Any hep?
Upvotes: 0
Views: 223
Reputation: 375
I found the solution, I have just to test it in my live server. But I don't understand why it didn't work in my local machine.
Upvotes: 0
Reputation: 22903
You added the wrong meta tag. If you want to moderate the comments in the moderation tool:
<meta property="fb:app_id" content="{YOUR_APPLICATION_ID}"/>
with YOUR_APPLICATION_ID
correctly set to your page's header,Upvotes: 2