Hello,
This issue appears in link with your Url which contains some " " (space, translate to "%20")
For the Add to cart button :
After processing several test with different configuration I think I get the root issue, and so I made a fix to specific case.
It's just a little modification in your file :
- yourWebsite\administrator\components\com_hikashop\helpers\helper.php
Look for this line (around line 700) :
if(strpos($url,$live)!==0 && preg_match('#^http://.*#',$url)) return true;
And change for this :
if(strpos($url,$live)!==0 && strpos(urldecode($url),$live)!==0 && preg_match('#^http://.*#',$url)) return true;
So thanks for your return !
Hope this will solve your issue, if not keep in touch !
For the second point on your add to whishlist button :
Please provide a backend and FTP access to your website and a valid link to a product page.
We will debug the issue on your end directly.
To send these informations, you can use our contact form and give the url to this topic in your message.
www.hikashop.com/support/contact-us.html
Regards.