-- HikaShop version -- : 3.5.1
-- Joomla version -- : 3.8.13
-- PHP version -- : 7.2
Hello,
I have a problem with a blank page after returning from mollie (iDeal).
When returning to hikashop we end up with a blank page. JD iDeal has redirects to articles in a menu. Which are setup correctly.
When returning with the status "Canceled" or "Failed" we end up being redirected to the right article page. But when we return with a status "Confirmed" (paid), we end up on a blank page.
I have talked to the developer and we came up with the following.
This happens with the guest checkout. Where we think it goes wrong is here:
if(empty($order) || hikashop_loadUser(false) != $order->order_user_id)
return false;
Since the guest user doesnt have an an account, it also doesnt have a user_id.
This happens when hikashop is set to "legacy checkout = yes". When we have "legacy checkout = no" we have the following problem. The text from the "after end" will show (see attachment). But will not redirect.
Also the after_end will have the option to see the order, which once you click that will goto login page. The guest user has no account, so thats a problem too. I know how to change the after_end view to not show that link. So could solve that problem.
Is there a way to make the redirect work?