Viewing 3 replies - 1 through 3 (of 3 total)
  • I’ve found:

    if (!WPAC._Options.commentsEnabled) {
    
    		WPAC._Debug("info", "Abort initialization version %s (comments are not enabled on current page)",  WPAC._Options.version);
    
    		return false;
    
    	}

    and I changed it to:

    if (!WPAC._Options.commentsEnabled && !(jQuery('body').hasClass('category-blog'))) {
    
    		WPAC._Debug("info", "Abort initialization version %s (comments are not enabled on current page)",  WPAC._Options.version);
    
    		return false;
    
    	}

    And the plugin works exactly as I expected. I think it would be a really nice feature to be able to turn your ajaxed comments on in archive from options panel.

    Hi anoriell,

    IMHO, this schould be possible with the most recent version of the plugin. You can use the option “Comment pages URL regex” to enable the plugin based on the URL.

    Hope this helps …

    Thank you for your answer!
    I haven’t noticed that option earlier…
    It solves my problem entirely. Thank you very much!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘WP-Ajaxify-Comments on Archive page’ is closed to new replies.