The comments plugin lets people comment on content on your site using their Facebook account. People can choose to share their comment activity with their friends (and friends of their friends) on Facebook as well. The comments plugin also includes built-in moderation tools and social relevance ranking.
Here are steps that I have taken for adding Facebook comments on my blog page with dynamic URL.
$(document).ready(
function
() { $(
".fb-comments"
).attr(
"data-href"
, window.location.href.split(
'?'
)[0]); });
Note that if you look at page source, it will still contain original URL you entered while creating comment plugin. Don't worry about that, comments will be displayed based on dynamic URL of the page.
Cartoon source: Geek And Poke Cartoons
Blog about programming
We'll guide you through the process of incorporating ChatGPT shared links into your commit messages.
What you should know abot textures before get started programming your first game.
GIMP script for creating Android icons at once
Script for creating Android icons for different screen resolutions at once. Icons can be saved using standard Android icons naming conventions and saved in appropriate folders.
Source code with examples how to use relative layout to create nice buttons with text and images in Android
Tutorial about connecting to the web pages on the Internet from Android application, using both POST and GET web requests.