By admin , 30 August, 2025 Commerce: remove old LOCKED carts Commerce has functionality to remove old carts. But locked carts can't be removed. This code fixed this Tags commerce
By admin , 5 June, 2025 Commerce: move order from "draft" to "completed" manually Run drush php and then$order = \Drupal\commerce_order\Entity\Order::load(ID); $order->set('state', 'completed'); $order->save(); Tags commerce drush
By admin , 5 April, 2024 Drupal Commerce 2 on paid event <?php declare(strict_types=1); namespace Drupal\MYMODULE\EventSubscriber; use Drupal\commerce_order\Event\OrderEvent; Tags commerce event