Facebook Comments Plugin on webpage not working - html

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>

Related

Whatsapp sharing link page doesn't exist

I doing a button to share a link to WhatsApp but after I clicked my button, the WhatsApp web shows the message "We couldn't find the page you were looking for".
this is my code
<a target="_blank" ng-href="https://wa.me/?text=aaa" data-action="share/whatsapp/share"></a>
after clicked my button, the URL
https://api.whatsapp.com/resolve?deeplink=/%3Ftext%3Daaa
May I know why the Whatsapp web show the message?
You code is correct, but..
It seems like Whatsapp broke this functionality a while ago. Only these kinds of texts with numbers are working at the moment.
(Was using the same functionality on my own site, have not found a proper replacement yet that works in all places/devices)
I fixed this issue by changing the href url to https://api.whatsapp.com/send/text?=aaa.

How can I redirect just a single blogger.com page to an external URL?

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.

facebook comments box plugin does not have view xx comments in website posts

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.

Facebook comments API on Tumblr

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>

I want to have a link to my facebook page from my blog

Every time I try to embed code that was recommended by another user, I get the same message: Could not retrieve id for the specified page. Please verify correct href was passed in.
All I want is something on my page that a reader can click to take them to my Facebook page. What am I doing wrong?
You can create a personal username for your account on facebook, check Facebook Usernames general information, creating a username will provide you with a custom url something like
www.facebook.com/YOURUSERNAMEHERE
you can easily add this to your blog by using the following html
Follow me on facebook
It would also be helpful if you post the code that you're trying to use currently, otherwise no one has any idea what you're trying to do.
If you just want a link in HTML to your facebook page, put this into your page:
My Facebook Page
The section that goes within the quotes should be the URL you see when you navigate to your Facebook page.
Are you talking about a Page or Profile?
For Pages, the Like Box plugin is probably the best option, and lets people like the Page right from your website: https://developers.facebook.com/docs/reference/plugins/like-box/
For your own Profile, there's Badges ( https://www.facebook.com/badges/ ) which you can use
If it's your own Profile and you want people to Subscribe to you ('Follow') - there's a subscribe button you can use for this: https://developers.facebook.com/docs/reference/plugins/subscribe/
i dont know why, but for some reason, you have to include the http:// before the link