After installed this module, I found my customers can't login. After they enter username and password, it still will show "Welcome Guest..."
I have tried to remark the step no.4 in the html_output.php then the customers can login. How to solve this problem?
4. In "/catalog/includes/functions/html_output.php"
After code (around line 58):
if (isset($_sid)) {
$link .= $separator . $_sid;
}
Add this code (around line 64):
if(!strpos($link, 'action')){
$url_rewrite = new url_rewrite;
$link = $url_rewrite->transform_uri($link);
}