Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature currently requires accessing the site using the built-in Safari browser.
protected function datalayerRefund() {
$refundsQueue = Configuration::get('CDC_GTM_REFUNDS_Q', null, null, $this->shop_id);
if(!empty($refundsQueue)) {
$ordersToRefund = Tools::jsonDecode($refundsQueue, true);
// refund orders 1 at a time
if(is_array($ordersToRefund) && count($ordersToRefund)) {
$products = reset($ordersToRefund); // get first elem and reset pointer
$order_id = key($ordersToRefund);