Skip to content
Snippets Groups Projects

Inability to change payment methods

Merged Christel Loftus requested to merge inability_to_change_payment_methods into dev
All threads resolved!
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -535,7 +535,7 @@ class BobGo extends AbstractCarrierOnline implements \Magento\Shipping\Model\Car
public function getAllowedMethods(): array
{
$allowedMethods = $this->getConfigData('allowed_methods');
if ($allowedMethods === false) {
if (empty($allowedMethods)) {
return []; // Return an empty array if no allowed methods are configured
}
Loading