You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The MyParcel shipping method won't load and shows an error when visiting the checkout.
To Reproduce
Steps to reproduce the behavior:
Go to checkout
See error
Expected behavior
The MyParcel shipping methods should load.
Desktop (please complete the following information):
Browser Chrome
MyParcel Plugin version: 4.1.4
OneStepCheckout 1.2.042
Magento 2.4.1
Additional context
The error is thrown in \Magento\Checkout\Model\ShippingInformationManagement and probably caused because the shipping rate can't be loaded by code. This is maybe caused by changes in Magento 2.4 config files for custom shipping methods.
if (!$quote->getIsVirtual()
&& !$shippingAddress->getShippingRateByCode($shippingAddress->getShippingMethod())
) {
throw new NoSuchEntityException(
__('Carrier with such method not found: %1, %2', $carrierCode, $methodCode)
);
}
The text was updated successfully, but these errors were encountered:
Describe the bug
The MyParcel shipping method won't load and shows an error when visiting the checkout.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The MyParcel shipping methods should load.
Desktop (please complete the following information):
Additional context
The error is thrown in
\Magento\Checkout\Model\ShippingInformationManagement
and probably caused because the shipping rate can't be loaded by code. This is maybe caused by changes in Magento 2.4 config files for custom shipping methods.The text was updated successfully, but these errors were encountered: