How to set shipping mehtods?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
6 years ago


When i checkout a order,system remind me "Shipping country is not set",but i don not know where can i set country.
Thanks!
6 years ago
woshinidaye wrote:

Shipping country is not set"!


1.Install Shipping plugin from plugin list.
2. Configuration all shipping method from  /Admin/Shipping/Providers.


Thanks & Kind Regards
nopSquare
6 years ago
Hello,

Enable Country for Customer ... Customer have to select country

Admin > Configuration > Settings > Customer Settings >> Address form fields

Check this code.

if (getShippingOptionRequest.ShippingAddress.Country == null)
            {
                response.AddError("Shipping country is not set");
                return response;
            }

Thanks,
Jatin
6 years ago
nopSquare wrote:

Shipping country is not set"!

1.Install Shipping plugin from plugin list.
2. Configuration all shipping method from  /Admin/Shipping/Providers.


Thanks & Kind Regards
nopSquare
http://nopsquare.com/

Thanks for reply!
I have already installed plugin.
But i can not  configuration all shipping method from  /Admin/Shipping/Providers,please check the picture:

And when i click "configure",the  user interface is:

I could not find anywhere to set country.
6 years ago
forefront wrote:
Hello,

Enable Country for Customer ... Customer have to select country

Admin > Configuration > Settings > Customer Settings >> Address form fields

Check this code.

if (getShippingOptionRequest.ShippingAddress.Country == null)
            {
                response.AddError("Shipping country is not set");
                return response;
            }

Thanks,
Jatin


Thanks for reply!
I have already do that,but still not make it.
6 years ago
forefront wrote:
Hello,

Enable Country for Customer ... Customer have to select country

Admin > Configuration > Settings > Customer Settings >> Address form fields

Check this code.

if (getShippingOptionRequest.ShippingAddress.Country == null)
            {
                response.AddError("Shipping country is not set");
                return response;
            }

Thanks,
Jatin

By the way,i have not find these code :(
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.