Hi,
Well, first what exactly do you want to control ?
Normally, HikaShop's registration is used mainly on the checkout. And thus, after the registration on the checkout, the user goes back to the checkout. So there should be no need to change anything to that.
The only case where this might be needed is if you're talking about the HikaShop registration form page.
After the registration there, the system displayed the "after_register" view file of HikaShop with a text "Thank you for your registration".
If you want to change that, there are several ways:
- You could simply do a translation override of that text if you want to change the text:
www.hikashop.com/download/languages.html#modify
- You could edit the file user / after_register via the menu Display>Views to add the text you want to that view file.
- You could also add a redirect to somewhere else in that same view file. For example:
<?php JFactory::getApplication()->redirect('XXX'); ?>
where XXX is the URL of the page you want to display to the user after the registration from the HikaShop registration form page.
Finally, note that if you're using Joomla's registration form page, all this won't apply to it as this is controlled by Joomla, not HikaShop.