First of all I want to thank the developers for this awesome template.
My problem is that when I change the default language of the site, every link points to the starting page, where you see the website logo, which you are supposed to see once per session. I either have to switch back to en-GB or disable the starting page to revert to normal behavior. I feel the translation interferes with this part of index.php but I am too noob a programmer to figure out a solution:
$revisit = false;
if(isset($_COOKIE['FirstVisitOfDay'])) {
$revisit = true;
} else {
setcookie("FirstVisitOfDay","1",time() + 3600);
$revisit = false;
}
Any suggestions please?
Kind regards,
Uygar