Hi all,
how to get products field value from Order Finish Success hooks?
https://www.modmore.com/simplecart/documentation/frontend/checkout/finished-order-hooks/
// get all ordered products
$products = $order->getMany('Product');
if (!empty($products) && is_array($products)) {
foreach ($products as $product) {
// ??????????
}
}