I had an issue with cookies before and I made changes to the script so it would work. Once I updated HikaShop to 4.6.0, I no longer had the cookie issue.
CART COOKIE ISSUE:
Here is the file: /public_html/components/com_hikashop/controllers/product.php
Line NO: 401 - 409, I commented-out the code.
$tmpl = hikaInput::get()->getCmd('tmpl', '');
if(empty($_COOKIE)) {
if(in_array($tmpl, array('ajax', 'raw'))) {
$ret = array(
'ret' => 0,
'message' => JText::_('COOKIES_REQUIRED_FOR_OPERATION')
);
hikashop_cleanBuffers();
echo json_encode($ret);
exit;
}
We have another website (flightcam360.com) and it is very similar but does not have the same issue. On this site I can reach the checkout on iOS. So, perhaps the issue is caused by the template or perhaps one of the plugins?? This probably also means the issue is not w/ HS unless it is in the configuration.
I hope we can figure out the cause of the issue because I can't really afford to rebuild the site.
-JM