Pop up doesn’t show
-
So the website is in two languages, English and French. I have created 2 different pop ups, one for the English version and one for the French version. Problem is, only one shows up on the website. Now, I have raised this issue with you before and you recommended I place a js code on the pop ups:
French:
var url = window.location.href;
if (url.indexOf(‘/en’) > 0) {return false;}
English:
var url = window.location.href;
if (url.indexOf(‘/en’) <= 0) {return false;}
I have already placed the recommended code on both pop ups. However, this results in the French pop up not showing up anymore on the French version of the website. The english pop up works fine.The page I need help with: [log in to see the link]
The topic ‘Pop up doesn’t show’ is closed to new replies.