hello, taking a look just now:
because these aren’t more used: the problem you experience is given (i assume) by the overall_footer.html js added code:
and i assume that this fail:
// check if link point to external resource
if(/^(f|ht)tps?:\/\//i.test(href)){
e.preventDefault(); // prevent load as we are inside
parent.location.replace(href);
return;
}
change it into this, that may resolve?
if ((this.href.indexOf(w3all_doc_domain) > -1) != true){
// check if link point to external resource
if(/^(f|ht)tps?:\/\//i.test(href)){
e.preventDefault(); // prevent load as we are inside
parent.location.replace(href);
return;
}
}
let know if still not, here should be the clue
-
This reply was modified 5 years, 11 months ago by axew3.