Hi,
Please look for line1447 in /js/custom.theme.js, remove the codes:
if(themeData.pageLoading.length){
//Logo
$('#logo a,#logo-footer a').click(function(){
themeData.fnPageLoadingEvent($(this));
return false;
});
// Gallery, Post
$('.arrow-item,.article-cate-a').click(function(){
themeData.fnPageLoadingEvent($(this));
return false;
});
// Archive, News unit
$('.archive-item > a.ux-lazyload-wrap,.arvhive-tit > a,.archive-arrow,.grid-meta-a,.gird-blog-tit-a').click(function(){
themeData.fnPageLoadingEvent($(this));
return false;
});
/** Modules */
$('.entry a,.pagebuilder-wrap a').click(function(){
if($(this).is('.lightbox')||$(this).is('.lightbox-item')){}else{
if($(this).attr('target')=='_blank'){}else{
themeData.fnPageLoadingEvent($(this));
return false;
}
}
});
}
Regards!