Quote
Ankur wrote:
Quote
structor wrote:
Question: can it be done for photos, or maybe photoalbums?
Yeah !!! Of course !!!
Actually, it uses the current page URL to show the Comments differently for each URL.
So wherever you put this code, it will show the comments posted n that page.
For example :
If the current page URL is www.clan-icsl.com/profile.php?lookup=1, then it will show the comments only for this URL... And similarly different comments posted for other URL's.
So in short comments are unique for all pages by url...
so you can use it in :
> Photo Albums Page
> Photos page
> Articles
> News
> Custom Pages
.
.
Infact on the whole site 
Can you help me a litttle here with the:
> Photo Albums Page
> Photos page
> Articles
> News
> Custom Pages
Where to set in the code so it works.
I mean the;
[syntaxhighlighter brush=javascript,first-line=1,highlight=0,collapse=false,html-script=false]// Code Added for Facebook Comments Box
echo "<table cellpadding='0' cellspacing='0' width='400' class='center tbl-border'>\n<tr>\n";
echo "<td class='tbl2' colspan='2'><strong>Umsagnir</strong></td>\n";
echo "</tr>\n<tr>\n";
echo "<td class='tbl1'>\n";
echo "<div id='fb-root'></div>
<script>
window.fbAsyncInit = function() {
FB.init({appId: '****************', status: true, cookie: true,
xfbml: true});
};
(function() {
var e = document.createElement('script'

; e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root'

.appendChild(e);
}());
</script>\n";
echo "<fb:comments numposts='10' width='400' publish_feed='false'></fb:comments>\n";
echo "</td></tr>\n</table>\n";
// Code Ends here
[/syntaxhighlighter]