Hi,
When I click on the register link of your Joomla login on your website, I see these error messages:
Notice: Use of undefined constant DS - assumed 'DS' in C:\domains\zgraaftexel.nl\wwwroot\33\plugins\system\hikashopregistrationredirect\hikashopregistrationredirect.php on line 43
Notice: Use of undefined constant DS - assumed 'DS' in C:\domains\zgraaftexel.nl\wwwroot\33\plugins\system\hikashopregistrationredirect\hikashopregistrationredirect.php on line 43
Notice: Use of undefined constant DS - assumed 'DS' in C:\domains\zgraaftexel.nl\wwwroot\33\plugins\system\hikashopregistrationredirect\hikashopregistrationredirect.php on line 43
Notice: Use of undefined constant DS - assumed 'DS' in C:\domains\zgraaftexel.nl\wwwroot\33\plugins\system\hikashopregistrationredirect\hikashopregistrationredirect.php on line 43
Notice: Use of undefined constant DS - assumed 'DS' in C:\domains\zgraaftexel.nl\wwwroot\33\plugins\system\hikashopregistrationredirect\hikashopregistrationredirect.php on line 43
Warning: include_once(C:\domains\zgraaftexel.nl\wwwroot\33\administratorDScomponentsDScom_hikashopDShelpersDShelper.php): failed to open stream: No such file or directory in C:\domains\zgraaftexel.nl\wwwroot\33\plugins\system\hikashopregistrationredirect\hikashopregistrationredirect.php on line 43
Warning: include_once(): Failed opening 'C:\domains\zgraaftexel.nl\wwwroot\33\administratorDScomponentsDScom_hikashopDShelpersDShelper.php' for inclusion (include_path='.') in C:\domains\zgraaftexel.nl\wwwroot\33\plugins\system\hikashopregistrationredirect\hikashopregistrationredirect.php on line 43
This indicates that DS is not defined (which shouldn't be the case normally).
Add the code:
if(!defined('DS'))
define('DS', DIRECTORY_SEPARATOR);
before the code:
if(!include_once(rtrim(JPATH_ADMINISTRATOR,DS).DS.'components'.DS.'com_hikashop'.DS.'helpers'.DS.'helper.php')) return true;
in the file plugins/system/hikashopregistrationredirect/hikashopregistrationredirect.php and that should solve the problem.