Viewing 2 replies - 1 through 2 (of 2 total)
  • I know this is 8 months old but I had the same issue with a WordPress site that I took over. If you go into swa.js, line 157, change the code from:

    /* Comment / comment reply links */
    		if ( target.attr('class') == 'acomment-reply' || target.parent().attr('class') == 'acomment-reply' ) {
    			if ( target.parent().attr('class') == 'acomment-reply' )

    to:

    /* Comment / comment reply links */
    		if ( target.hasClass('acomment-reply') || target.parent().hasClass('acomment-reply') ) {
    			if ( target.parent().hasClass('acomment-reply') )

    Thanks,
    Dan

    Thanks for the code dmurton!

    I will try it ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Reply button does not work for threaded comments’ is closed to new replies.