-- HikaShop version -- : 2.6.3
-- Joomla version -- : 3.6.0
-- PHP version -- : 5.6
Hi there,
I replaced the login module that shows on the checkout process by removing the code in the view checkout->login_form and inserting my own template position there.
foreach (JModuleHelper::getModules("login_module_checkout") as $module) {
echo JModuleHelper::renderModule($module);
}
I put login step as a standalone step, with no other checkout components like cart, or fields, etc
Then I assign my login module to this template position and it seems to work fine. After the user introduces it credentials then the checkout process continues normally and progresses to the next step.
My question is, even though it seems to work fine, am I breaking any Hikashop functionality or may I have other problems I am not able to see now?
The reason I do this is because with the community builder login form the user can log in via user ID or email address ( you should implement this in Hikashop since the user not always remembers the user id and the email address is easier to remember).
Many thanks