Yea, I fixed the problem.
It's actually an opencart bug.
The last line of the "page" function on catalog/controller/category.php (and other controllers that use page) is referencing the ssl url instead of just href
CHANGE:
Code: Select all
$response->redirect($url->[color=red]ssl[/color]('category', FALSE, array('path' => $request->gethtml('path'))));
TO:
Code: Select all
$response->redirect($url->[color=red]href[/color]('category', FALSE, array('path' => $request->gethtml('path'))));
You don't want to browse categories and products in ssl.
As luck would have it, hm2k is working on link-style pages instead of the drop down now so it can be fixed as part of those changes