Opencart Version 3.x UPS shipping method error
Hi, if you getting same message like me for the shipping method UPS
Warning: No Shipping options are available. Please contact us for assistance!
SOLUTIONS: I found the problem in UPS shipping method code was incorrect.
Before Code Line: if ($this->config->get('ups_' . strtolower($this->config->get('shipping_ups_origin')) . '_' . $code)) {
Changed Code Line: if ($this->config->get('shipping_ups_' . strtolower($this->config->get('shipping_ups_origin')) . '_' . $code)) {
Now it is working fine. Enjoy Fixing I did fix this code for opencart Version 3.0.2.0
Warning: No Shipping options are available. Please contact us for assistance!
SOLUTIONS: I found the problem in UPS shipping method code was incorrect.
Before Code Line: if ($this->config->get('ups_' . strtolower($this->config->get('shipping_ups_origin')) . '_' . $code)) {
Changed Code Line: if ($this->config->get('shipping_ups_' . strtolower($this->config->get('shipping_ups_origin')) . '_' . $code)) {
Now it is working fine. Enjoy Fixing I did fix this code for opencart Version 3.0.2.0