Facebook social plugins - commens box - facebook-comments

Facebook social plugins - commens box is not showing up in wordpress any solution Now I am doing it by generating code not through plugins
I am generating code from https://developers.facebook.com/docs/reference/plugins/comments/
app id and everything is correct
it was not working before

I tried to create a comment box on a simple html page and it is working
http://gigyonline.com/test.html
Please try with a simple html page and if it working verify the browser you are using. You can see the view source of the above page. It has only the facebook plugin code.

Related

Facebook Comments Plugin: My website url does not show comments

My site appears to be blocked from displaying comments using the Facebook Comments Plugin
I tried to go to the tests page to copy the comments code but the site doesn't load the comments section
Plugin URL: https://developers.facebook.com/docs/plugins/comments/
My website URL (exemple): https://cm7brasil.com/noticias/mundo/furacao-fiona-piora-apos-atingir-republica-dominicana-e-porto-rico/
Has anyone ever had a similar problem?

Facebook Page Plugin Error

im trying to use the code that is generated from facebook page plugin and use in my web page.
https://developers.facebook.com/docs/plugins/page-plugin
as i add facebook page url, my page do not appear in preview.I try in this plugin with other pages and they display correctly on preview.
What might be wrong here?

Facebook Wordpress Bad Feed Description

I am having humbling issues with Facebook and Wordpress
I am using
WP ver 3.4.1
FB plugin Version 1.0.2
I Installed the plugin. Created a Facebook app.
What is happening is I am sharing the page on Facebook using Facebooks share button, send button, and subscribe button. Even if I copy and paste the post I get the following in the feed description.
You may use these HTML tags and attributes: <​a href="" title=""> <​abbr title=""> <​acronym >title=""> <​b> <​blockquote cite=""> <​cite> <​code> <​del datetime=""> <​em> <​i> <​q cite=""> <​>strike> <​strong>
I think it is in a Facebook PHP file, but I looked there. I am kind of stumped to say he least.
Yes. For some reason the Facebook for Wordpress plugin pulls in the comment instructions as the default description it uses in the og:meta tags, especially when there is no text associated with your posts or no excerpt set.
On my sites, I use the Facebook for Wordpress plugin for connectivity, but I've given up letting it generate my meta tags. I use Wordpress SEO instead, since you can specify what text should be in your description, titles, etc. There are other plugins that also do the same.
To inhibit the Facebook for Wordpress meta tags, add this to your theme's functions.php:
//Remove the Facebook for WP tags until they get their s**t together.
remove_action('wp_head', 'fb_add_og_protocol', 10);

Facebook Share preview showing CSS

Hey everyone I was working on a Wordpress site in a dev environment and when I shared a page on Facebook I would see a nice preview image and some of the text. When I moved the site to production now I don't see the image and the preview text is a bunch of CSS code.
Here are two links to test with
Dev - http://www.facebook.com/share.php?u=http%3A%2F%2Fssb.thejspot.ws&title=Sunset+Beach+Golf+Company
Live - http://www.facebook.com/share.php?u=http%3A%2F%2Fssbeachgolf.com&title=Sunset+Beach+Golf+Company
You don't have any open graph tags defined for either site. You're lucky on the dev site that you were getting what you want.
Either code the open graph tags into your theme or get a plugin (I like Wordpress SEO) that adds the tags for you.
Also, take a look at the output from the Facebook debugger for each of your URLs. That is the first place you should start when you're not getting the results you want.

Implement the facebook connect on uiwebview using HTML5/JavaSCript for iphone sdk

I need to implement the facebook connent on UIWebview using HTML5/ Javascript. Presently what I implemented is working fine on iphone safari but not in native application. Please Suggest. Thanks
when the app loads up have it open a web view that point to a website that does what you want it to. see facebooks graph api documentation for web apps/websites
I'm working on this kind of app also. I haven't finished it yet but after googling I found just this link that seems to work with UIWebView
http://suhinini.me/2011/05/24/embedding-facebook-social-comments-plugin-to-an-ios-application/
I've tried the HTML5 code on the comment plugin page but it doesn't work. The UIWebView just shows nothing.
I'm still looking for the best solution.
edited
Ok now I got my app working. What I did was creating a HTML file, containing the code from facebook comment plugin page, and put it in my project (I think this should work fine with file on server also). I use this
[UIWebView loadHTMLString:baseURL:]
since my HTML file is local.
This is the facebook comment plugin page
https://developers.facebook.com/docs/reference/plugins/comments/