Hello @jirehly,
Thanks for writing in! It seems that there is a JS error in your page.
Uncaught TypeError: Cannot set property 'checked' of null at window.onload ((index):1788)
I can see that you have inserted this:
function CheckLang() {
var isChecked = document.getElementById("langswitch").checked;
if(isChecked){
var str = window.location.href;
var n = str.endsWith(".com/");
if(n === true){
window.location.replace(window.location.href + "_en");
} else {
var LangEN = "https://" + window.location.host + window.location.pathname;
var newLangEN = LangEN.substr(0, LangEN.length-1);
window.location.replace(newLangEN + "_en");
}
} else {
var LangCN = window.location.pathname;
var newLangCN = LangCN.substr(0, LangCN.length-4);
window.location.replace("https://" + window.location.host + newLangCN);
}
}
window.onload = function() {
if(window.location.href.indexOf("_en/") > -1) {
document.getElementById("langswitch").checked = true;
}
}
You may need to contact the creator of the script to correct it first.