- Posts: 23
- Thank you received: 0
No shipping available when state field disabled
15 years 9 months ago #2715
by theDigger
Hikashop Essential 1.4.0
No shipping available when state field disabled was created by theDigger
Hi,
I have set up a shipping method for Sweden but when I disable the state field Hikashop sais that there is no shipping method available to my address. It works fine with the state field activated.
Nils
I have set up a shipping method for Sweden but when I disable the state field Hikashop sais that there is no shipping method available to my address. It works fine with the state field activated.
Nils
Hikashop Essential 1.4.0
Please Log in or Create an account to join the conversation.
15 years 9 months ago #2720
by nicolas
Replied by nicolas on topic Re: No shipping available when state field disabled
Hi,
That should only be the case if you already had the address already in the system If you create a new address and use it, you should get the shipping methods.
If you use the latest version 1.3.9 or above, you need to change the code
to
in the file administrator/components/com_hikahsop/classes/zone.php near line 70 and that should fix the problem.
For previous versions you need to edit the file plugins/hikashopshipping/manual.php and do the same change.
That should only be the case if you already had the address already in the system If you create a new address and use it, you should get the shipping methods.
If you use the latest version 1.3.9 or above, you need to change the code
Code:
if(!empty($order->shipping_address) && !empty($order->shipping_address->address_state)){
$field='address_state';
}
Code:
$fieldClass = hikashop::get('class.field');
$fields = $fieldClass->getData('frontcomp','address');
if(in_array('address_state',array_keys($fields)) && !empty($order->shipping_address) && !empty($order->shipping_address->address_state)){
$field='address_state';
}
For previous versions you need to edit the file plugins/hikashopshipping/manual.php and do the same change.
Please Log in or Create an account to join the conversation.
15 years 9 months ago #2759
by theDigger
Hikashop Essential 1.4.0
Replied by theDigger on topic Re: No shipping available when state field disabled
It seems to work in 1.3.9 when I re-save the address.
Hikashop Essential 1.4.0
Please Log in or Create an account to join the conversation.
Time to create page: 0.151 seconds