I’ve solve this issue by changing a functions in functions.php
With the editor you have to change:
[Code moderated as per the Forum Rules. Please use the pastebin]
by :
function wpapl_get_uri() {
$current_url = $_SERVER["REQUEST_URI"];
$temp_url = explode( "?", $current_url );
$current_url = $temp_url[0];
if(preg_match("*\\?*",$current_url) == 0) { $plus = "?";} else { $plus = "";}
return $current_url . $plus;
}
It work in my case but maybe you permalinks format is different and it will not work. So make a backup of functions.php before.