- Posts: 3
- Thank you received: 0
Login Mod
- designlabs
-
Topic Author
- Offline
I understand that there is a mod_login and then hika shop also has its own login options. Wanted to know if we could have this integrated.
I wanted to put the login option in one of the module to the customers. Is that possible.
Thanks and Regards
Edward
Please Log in or Create an account to join the conversation.
HikaShop indeed has its own login view different from the joomla module login view. It's not possible to use the joomla login module in the checkout. It has its own form and the checkout view also has a global form which englobes all the views of the checkout. But you can't have a form in a form. It's not valid and would not work. So that's why we had to use our own login view.
Please Log in or Create an account to join the conversation.
Thank you.
James.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
1) You can't go to checkout if the cart is empty and
2) There is no way for the customer to logout once they have logged in
For those reasons it really isn't a practical solution, but it would work if your customers only needed to login when they were purchasing something. The logout issue would still be a problem, although one workaround might be to display the Joomla mod_login only to registered users, keeping it hidden from those not logged in, but that still isn't ideal.
A standalone Hikashop registration/login/logout module would be nice to have since you could then require more information from the user when they first register on the site.
Regards,
Ed
Please Log in or Create an account to join the conversation.
So is it possible to disable (or say "disable") the Joomla Login & Register Form and replace it by the HikaShop Login?
At the moment a customer has to register twice: Once to login into Joomla, once to create the whole information HikaShop needs (first name, surname, address(es), ...). That's not so good concerning usability and a steady workflow for the user.
hdracing wrote:
That's what I mean: The user should give all the information (Joomla (e-mail, name) + HikaShop (first name, surname, ...)) in one register formA standalone Hikashop registration/login/logout module would be nice to have since you could then require more information from the user when they first register on the site.
Please Log in or Create an account to join the conversation.
You can just create a new menu of the type hikashop user registration and you will have a link to the hikashop registration (joomla user+address).
Please Log in or Create an account to join the conversation.
- Edit the modules/mod_login/tmpl/default.php
- Search for the line "if ($usersConfig->get('allowUserRegistration')) : ?> [...]"
- Replace the link to "index.php?option=com_hikashop&view=user&layout=form"
- Save the file in the html/mod_login folder of your template to make it an override
Voilà: You have replaced the Joomla registration form with the whole HikaShop registration form. In fact you have only replaced the link but without a link to the Jooml form the user can only get to the HikaShop form if he/she wants to register ...
Maybe this helps other users with similiar problems
But now to the next step: Is it possible to only display some of the fields on the initial registration BUT others when a customer wants to buy something.
E.g.:
- I want the name and company on initial (Joomla) registration as requiered fields.
- But I don't want the address & VAT to be displayed on registration page, this should only be displayed when an order is placed as a requiered field.
best regards
Please Log in or Create an account to join the conversation.
If the fields are not required, you can add some CSS to hide the lines you don't want to display on one form and not the other but you can do that for required fields.
Please Log in or Create an account to join the conversation.
one question, I using hikashop in my web site but when costumer want to get registration to make the checkout after they put all the info and click register the system goes to the homepage and the costumer info is gone when i check hikashop users there is not new account registered , can you help me to solve this issue because costumers are getting away because they can't get registration to proceed the purchase.
Thanks
Sam
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Agreed, a standalone login/registration would be very nice
Please Log in or Create an account to join the conversation.
There is already a standalone registration form for HikaShop. You can create a menu to it via the joomla menu manager with the type hikashop user registration.
For the login, the joomla login is working fine so there is no need for us to do ours. However, if you want to use hikashop's registration page, you will have to change the "create an account" of the login module so that it links to hikashop's registration as explained there:
www.hikashop.com/support/forum/4-how-to/...t.html?lang=en#22664
Please Log in or Create an account to join the conversation.
This line here: <a href="<?php echo JRoute::_( 'index.php?option=com_user&view=register' ); ?>"> I change right?
Also, if my domain doesnt have a www in it do I leave that out?
Always so helpful
Please Log in or Create an account to join the conversation.
You can do like that:
<a href="<?php echo JRoute::_( 'index.php?option=com_hikashop&ctrl=user&task=form' ); ?>">
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.