- Posts: 272
- Thank you received: 13
Add new address not work in this case
- deltafidesign
-
Topic Author
- Offline
I create a user from user login module link. Then I log-in; I put something in the cart and I go to checkout. I must provide an address but when I click on the "new" button nothing happens and a message tells me "create or select an address".
Is this a bug or I should set something?
Thanks
Please Log in or Create an account to join the conversation.
That's probably a javascript bug on your website:
www.hikashop.com/en/support/documentatio...ty-issues.html#modal
But it's hard to be sure without a link to your website.
Please Log in or Create an account to join the conversation.
- deltafidesign
-
Topic Author
- Offline
- Posts: 272
- Thank you received: 13
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- deltafidesign
-
Topic Author
- Offline
- Posts: 272
- Thank you received: 13
Please Log in or Create an account to join the conversation.
Anyway, the shipping address selection and shipping method selection on the checkout can easily be hidden with some CSS if you want a quick way to solve the problem.
Please Log in or Create an account to join the conversation.
- deltafidesign
-
Topic Author
- Offline
- Posts: 272
- Thank you received: 13
Anyway, the shipping address selection and shipping method selection on the checkout can easily be hidden with some CSS if you want a quick way to solve the problem.
No, the issue is that is I don't have any shipping method, it already don't display on checkout process so I don't need any CSS trick to hide something. But I cannot add a new address in the case that:
1: a user create an account from J! registration form
2: I seel only virtual goods (no shipping methods and shipping plugins activated)
So, if a user create first an account from J! registration form, then put something in the cart, then go to checkout now it request an address ('cause in J! r. f. he/she couldn't do it); but in this case if I click on the button to add a new address it doesn't work.
Thanks
Please Log in or Create an account to join the conversation.
- Posts: 67
- Thank you received: 0
Please Log in or Create an account to join the conversation.
You have the javascript error:
index.php:72 Uncaught TypeError: Cannot read property 'checked' of null
hikashopEditAddress index.php:72
(anonymous function)index.php:354
Please change the line:
if(val && (new_address && same_address.checked || !new_address && !same_address.checked)){
to:
if(val && same_address && (new_address && same_address.checked || !new_address && !same_address.checked)){
in the file components/com_hikashop/views/checkout/view.html.php and try again (after flushing your browser cache) and that should hopefully solve the problem.
@deltafidesign: Maybe you have the same error. So you should try that fix. If you still have the problem after that, please give a link to your website.
Please Log in or Create an account to join the conversation.
- deltafidesign
-
Topic Author
- Offline
- Posts: 272
- Thank you received: 13
Please Log in or Create an account to join the conversation.
- Posts: 67
- Thank you received: 0
Please Log in or Create an account to join the conversation.
www.hikashop.com/en/support/documentatio...issues.html#messages
So you have the "shipping" view in your checkout workflow, but you didn't configure any shipping methods or your configured some but not correctly so they do not display.
You can look here for a list of possible causes:
www.hikashop.com/en/support/documentatio...ins-listing.html#faq
Please Log in or Create an account to join the conversation.
- Posts: 67
- Thank you received: 0
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- Posts: 67
- Thank you received: 0
Please Log in or Create an account to join the conversation.