On my site the same Disqus thread shows up on all pages.
I have tried:
var currentPageId = '/testo';
window.disqus_shortname = 'strengthtracker';
window.disqus_identifier = currentPageId;
window.disqus_url = 'http://strengthtracker.apphb.com/' + currentPageId;
and:
var currentPageId = '/testo';
var disqus_shortname = 'strengthtracker';
var disqus_identifier = currentPageId;
var disqus_url = 'http://strengthtracker.apphb.com/' + currentPageId;
Both yeild the same result, the same thread shows up everywhere even though the currentPageId changes.
What am I doing wrong here?