#5469

Tu Tran
Moderator

Hi,

Yes, to solve this issue, please go to the file app\code\local\Sns\Quickview\controllers\IndexController.php, and add the code below

if (strpos($path, "___SID=U&") !== false) {
            $path = str_replace("___SID=U&", "", $path);
        }

into right before the code

$path = substr($path, 0, strpos($path, '?_=')); $path = str_replace('index.php/', '', $path);

Thanks,