I am having this issue for "Load Replies" as well, but instead of going to the top of the page, it reloads the whole page (usually after loading the replies). You can see it here (the site is not in English, but I'm sure you can figure it out!):
https://aafiat.com/specialist/%d8%ad%d8%b3%db%8c%d9%86-%d8%a2%d8%b1%d8%a7%d8%af/#
I removed it from the maintenance mode. You can see it now.
ok @akiarostami thank you!
We're going to check the issue. I'll update the topic once I get some news for you..
Do you have any idea when that would be? Right now there is no way for people to see replies to comments, and it needs to be fixed.
Thank you.
Sorry for the late response @akiarostami.
It seems either active theme or some of the plugins caused the issue. We'll need admin accesses for deeper support. Could you please send the admin login details to info[at]gvectors.com email address?
Hi @akiarostami,
The issue may be caused by the following js.
<script type="text/javascript" src="https://aafiat.com/wp-content/plugins/ratings-pro-for-wpdiscuz/public/js/ratings-pro-for-wpdiscuz-public.js?ver=1.1.3"></script>
jQuery( document ).ready(function($) {
MutationObserver = window.MutationObserver || window.WebKitMutationObserver;
var observer = new MutationObserver(function(mutations, observer) {
if( mutations.length === 1 ) {
$( mutations[0].addedNodes ).each( function ( index, addedNode ) {
if( addedNode.classList.contains( 'wc_comment_level-1' ) ) {
if( rpfwpd.refresh ) {
location.reload()
}
}
});
}
});
var wcThreadWrapper = document.getElementById("wcThreadWrapper");
if( wcThreadWrapper ) {
observer.observe( wcThreadWrapper, { childList: true } );
}
});
Please comment out the js, delete all caches and check again.
Thank you!