Merge Wordpress comments with Facebook comments [closed] - facebook

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
Am required to integrate the Facebook comments on a wordpress blog... There are no issues there ( ran a few tests locally and everything turned out alright ).
The problem appears when I'm asked to keep the current Wordpress comments, but under the facebook layout. Basically the client doesn't want to lose the current comments, but in the same time I can't keep the wordpress comments either. Everything has to be faceook...
Any ideas? Any suggestions? Is this possible at all ( I 'googled' everything related to this question, but there was no answer ).
P.S.: how did Techcrunch manage to do this ( or they kept the comments from their facebook page? )?
Thanks!

The plugin Facebook Comments for WordPress is doing what you are looking for :
users can post with their Facebook account (and cross-post on their wall)
users can post with standard Wordpress comments
comments from both sources are merged
and a lot of cool features the Facebook comments plugin miss (chronological order, email notification, cross-post all comments to a user page, etc.)

Related

Auto publish my joomla articles in my facebook page [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I have a Facebook page and i want to publish my joomla website articles in this page, that mean after add a new article in my website automatically published in the facebook page, here is my web site, so plz if someone has any idea i will be very appreciative :)
There are a lot of developed plugins and components which will do the job. Check the Joomla Extensions Directory, you will see, that there are commercial and non-commercial solutions that might fit your needs.
This one http://extensions.joomla.org/extensions/social-web/social-share/social-multi-share/18072 comes with auto publish to Facebook and Twitter. I'm using it on my site and it has an auto Facebook page import function in the plugin parameters itself. It has all the configuration options you need.

Does a Facebook Offer have a permalink? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I just found out about Facebook Offers, which seem pretty interesting. I know how to create one, my question is, once created, does it have a permanent link? I want to link to this Facebook Offer from a link inside my blog.
Thanks
Themos
Yes, it creates a permanent link.
As an example, here's a permanent link to a Facebook Offer by a bagel shop.
When you create an offer it does get a permanent serialized link that you can share outside of Facebook (hence the Sharing utility). According to this Facebook documentation you can stop an offer and the link will still be available/visible but no one can claim the offer. You can delete the offer and the permanent link will most likely 404.
Resources:
For more information and a detailed look at Facebook Offers I found this blog entry helpful.

Post to Wordpress from Facebook [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I've got a client who is more familiar and confident with the facebook intefrace and would like have her posts from Facebook Business page be autoposted on her Wordpress blog.
Any hints on how to achieve this.
I understand the benefits of getting her using Worpress, but at this stage the lack of WYSIWYG in the WordPress app is holding her back.
Any suggestions of plugins to take Facebook posts to Wordpress would be appreciated.
Facebook does not yet provide real-time updates for stream posts on pages, so you'll need to do something like this:
Set up a cron job to call a script on schedule (once per hour or day probably) that:
Makes an API call to her page's feed to see if any new posts were made since the last poll.
If data is returned, loop through the results and create a new WP post for each FB post.
Just make sure there aren't any plugins installed on WP that autopost to FB.
I haven't ever seen a plugin like this before. There are some plugins out there that make editing Wordpress more user-friendly like Front End Editor. This might be a better solution.
get the rss feed url of your fb page and put it into the feedwordpress plugin

Dynamically generated page URLs don't work this morning [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
This morning dynamically generated links to FB pages from our app stopped working. Link to a page like this http://www.facebook.com/pages/125567350861413 used to work just fine, now it requires page name http://www.facebook.com/pages/Daniels-Real-Estate/125567350861413
Why would this be changed? Was there a problem with old pages link format?
We tweaked our code to take into account page name and made it work. But if a user changes the name of a page the link to this page will break, until we refresh the list of pages in our db. We'll write a chron job that will refresh the list of page names for all users using our app multiple times a day, but we'd prefer not having to do that.
Anyone else ran into this issue? What was your workaround (other than the above)?
While this is probably an off-topic question, you can get the page url using the graph api:
http://graph.facebook.com/125567350861413 and looking at the link property. As to why Facebook changed this, you would have to ask them at their developer group or log a bug.

Getting fb.me URL [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 10 months ago.
The community reviewed whether to reopen this question 10 months ago and left it closed:
Original close reason(s) were not resolved
Improve this question
How do I go about either making, or retrieving facebook short url's (fb.me) from a page, profile, event etc? I want to update my url shortener site - but if the user links to a facebook page I want to just return a fb.me link instead. Does facebook make their short urls on the fly, or does each page automatically already have one?
Facebook uses Bit.ly's services to shorten links from their site. While pages that have a username turns into "fb.me/<username>", other links associated with Facebook turns into "on.fb.me/*****". To you use the on.fb.me service, just use your Bit.ly account. Note that if you change the default link shortener on your Bit.ly account to j.mp from bit.ly this service won't work.
You can use bit.ly api to create facebook short urls find the documentation here
http://api.bitly.com
I'm not aware of any way to programmatically create these URLs, but the existing username space (www.facebook.com/something) works on fb.me also (e.g. http://fb.me/facebook )