I have an issue after installation:
Translated one small text block "Oh, before we forget".
a. After selecting a language in the menu the page turns blank, and the text in the url box says: about:blank#blocked
b. For some reason the text shown is language 2, and there is a lot of white space. (In the code I see a lot of "
"s)
Cheers
I found webflow was adding http:// to the URL.
Please add this code to your header to fix this issue in webflow:
`jQuery(document).ready(function() {
jQuery(‘nav a’).each(function() {
if (jQuery(this).attr(‘href’).includes(‘javascript:’) && jQuery(this).attr(‘href’).includes(‘://’)) {
jQuery(this).attr(‘href’, jQuery(this).attr(‘href’).replace(‘https://’, ”));
jQuery(this).attr(‘href’, jQuery(this).attr(‘href’).replace(‘http://’, ”));
}
});
});
Please login or Register to submit your answer