Create an account


Comments does't open.

#1
I can't open comments in Firefox and IE9. It works only in Chrome or what?
Reply

#2
I only have Chrome and Opera, everything works great here. No idea whats causing the problem Sad

Edit:
Also working fine in IE8
There is a theory wich states that if ever anyone discovers exactly what the Universe is for and why it is here, it will instantly disappear and be replaced by something even more bizarre and inexplicable.
Reply

#3
same problem here. no solution yet :/
[Image: 9t4xygso.png][Image: zzm2vxzo.png]
Reply

#4
the way i've gotten it to work on firefox is first you have to click the comment link then resize your window in any ways. hit f11, restore down, restore up, ctrl+shift+k (open web console) anything to make the text move. then it loads. weird bug,
Reply

#5
Same here, comments doesn't work in Firefox for months now... really annoying. Used FF 16-22, no change so far.
Reply

#6
A possible solution might be loading the disqus thread once when the comment section is opened. Currently it is loaded when the page is loaded.
I have wrote a small script that could improve the current way it is loaded:

Code:
<!-- New comment section: -->

<!-- comments BEGIN -->
<div><a href="#disqus_thread" data-disqus-identifier="{Z0R LOOP NUMBER}" id="disqus_button">Loading comment counter...</a> <span class="updateThis">(click to expand)</span></div>
<div id="disqus_thread"></div>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments.</a></noscript>
<!-- comments END -->

<!-- Place for other stuff -->

...


<!-- At the bottom of the page javascripts should be loaded -->

<script>
    var disqus_shortname = 'z0r';
    var disqus_identifier = '{Z0R LOOP NUMBER}';
    var disqus_url = 'http://z0r.de/{Z0R LOOP NUMBER}';
    
    // load comment counter
    $(document).ready(function() {
        $.ajaxSetup({ cache: true });
        $.getScript('http://z0r.disqus.com/count.js');
        $.ajaxSetup({ cache: false });
    });
    
    // hide disqus placeholder
    $('#disqus_thread').hide();
    
    // Load disqus script only once
    $('#disqus_button').one('click', function() {
        $.ajaxSetup({ cache: true });
        $.getScript('http://z0r.disqus.com/embed.js');
        $.ajaxSetup({ cache: false });
    });
    
    // display placeholder with a slide effect + change text of span 'updateThis'
    $('#disqus_button').click(function() {
        $('#disqus_thread').slideToggle(1000, function() {
            if($('.updateThis').text() == '(click to expand)')
                $('.updateThis').text('(click to close)');
            else
                $('.updateThis').text('(click to expand)');
        });
        return false;
    });
</script>
</body>
</html>

I've tested it and it should work. Feel free to improve and optimize it, if you have some knowledge in this language...

Tested here.

Edit: Jquery 1.7 or greater is required for this, I recommend 1.9.1... currently there is a old and slow one in use (1.3.2)

~SunRed
[Image: sig.gif]
Reply

#7
@SunRed
your example worked for me (Firefox 21.0)
Reply

#8
(13-06-2013, 23:04)fishpoindexta88 Wrote: @SunRed
your example worked for me (Firefox 21.0)

Nice to hear that. I hope eins looks at this soon...
[Image: sig.gif]
Reply

#9
Oh shit, i kinda forgot about this. Just tried it now and it works perfectly.
Many thanks to SunRed!
There is a theory wich states that if ever anyone discovers exactly what the Universe is for and why it is here, it will instantly disappear and be replaced by something even more bizarre and inexplicable.
Reply

#10
It's great that it is working^^ Nice to hear that I could help you Big Grin
[Image: sig.gif]
Reply




Forum software by © MyBB Theme © iAndrew 2016