putting disqus in prettyphoto

alvito

New member
Apr 22, 2011
100
0
0
hey guys I need some help. I have a slideshow of photos created with pretty photo. I want to create a facebook type commenting on each photo using disqus. but i just cant seem to get disqus working on the prettyphoto once it has loaded.
I have spent nearly 3 hours on it. any help would be immensely appreciated
 


have you not tried using the facebook discussion box?

use this to get current page url

Code:
<?php
function curPageURL() {
 $pageURL = 'http';
 if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
 $pageURL .= "://";
 if ($_SERVER["SERVER_PORT"] != "80") {
  $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
 } else {
  $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
 }
 return $pageURL;
}
?>

discussion box
Code:
<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:comments href="<?php echo $pageURL; ?>" num_posts="2" width="500"></fb:comments>