At the moment, I am trying to place facebook comments on my tumblr posts. I have managed to do so.
However, whenever I make a new post, it shares comments with the previous post. I think this has something to do with the URL being the same for each post, but I am not sure.
How can I use Facebook comments on Tumblr posts to be unique to each post?
Make sure you are using the permalink for the data-href and not your blog's main URL.
Example:
<div class="fb-comments" data-href="{Permalink}" data-num-posts="2" data-width="500"></div>
Related
I have a blogger.com blog that covers a variety of topics, including PC troubleshooting tips. I've decided to start a dedicated PC troubleshooting blog, using a different blogging service. I want to move some of those PC troublehshooting posts from the old blog to the new blog. I want people who end up at the old posts via search engines to be automatically redirected to the posts on the new blog.
I know I can easily redirect the entire blog to an external blog, but I don't want that. I want to preserve the old blog, but just relocate some of its posts to the new one.
I know I can redirect individual blogger.com pages to other pages within the same blog, but I don't want that either. I want to redirect to an external URL.
I can add html code to blog posts in blogger, but I think it only accepts code that goes into the {body} section. Perhaps my problem boils down to two questions:
is there a way to edit the {head} section of a blog post without doing it for the entire blog?
is there a way to do an automatic redirect using code that you put in the {body} section?
It wouldn't be a 301 redirect, but you could put this code inside your body:
<script type="text/javascript">
window.location = "http://myblog.blogger.com/mypost";
</script>
Use pages gadget for a proper search engine friendly 301 redirect. Go to layout > click pages gadget (or add it if you are not already using it) and edit it to simple add external page to your menu. The only caveat is that it will become a part of the menu and will not be a hidden redirect which you can only manually post in links.
I'm a beginner in facebook.
I try to add the facebook comments box to each of my blog post, i limit it to show 2 comments from the plugins, from the facebook comments box plugin site, they set the url to example.com and it show a whole different UI from what i got.
More importantly, there is no view XX comments after 2nd comment, even i added 20 comments to it.
May i know how can i solve it? is it some setting that i need to set in my facebook app or use the graph api, i know that i can get the json from the facebook graph site as mentioned in the facebook blog developers.facebook.com/blog/post/490/
if i need to solve using json way, how do i append the remaining comments inside the website where it is using iframe.
i wish to have a easier solution like just changing setting inside my facebook app, rather than code an "View xx comments" button to do ajax call and append the result to the dom myself.
There are comments on a webpage using the Facebook comments plugin, but I cannot see them. However, I can post my own comment logged in with Facebook.
The page has some kind of 'warning' about enabling an href?
href is the URL link to where your comments are located and what your users are commenting on. You need this for the plugin to work for other users.
As mentioned in the documentation,
News feed stories on Facebook will link to this URL.
Replace YOURURLHERE with the URL for where you have the comments plugin.
<div class="fb-comments" data-href="YOURURLHERE" data-num-posts="2" data-width="470"></div>
In Blog Post A, I'd like to reference a previous post within the same blog. "For more information on this, please see this other article."
Is there a way for me make 'this other article' a link to another existing post within the same blog?
Unfortunately not as easy as you would think. When you create the link in the "new" blog post you will have to paste in the absolute url of the "old" post into the link creator.
I did hear that in SF6 they will have the ability to select posts like pages.
Using a permalink for a particular post, I would like that post to be displayed in its entirety within an iframe or a div tag. That is: likes, comments and shares and the Fb format for a post would all be displayed on an external site. Thus, a wall-post like this one https://www.facebook.com/cnn/posts/200591363341827 would appear exactly as is, except within my site.
This doesn't exist as a plug in. You would need to write something yourself to pull all the data you want, and then display it on your page.
Do you mean a div that represents a wall post and comments that relate to the topic at a URL link?
Refer to:
https://developers.facebook.com/docs/reference/plugins/comments/
Also, look up other stuff that relates to social plugins at: https://developers.facebook.com/docs/plugins/