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