555 Posted April 7, 2023 at 01:50 PM Share Posted April 7, 2023 at 01:50 PM OP3 Модуль Яндекс метрика (взят с их сайта) выдает такую ошибку в момент удаления некоторых товаров из корзины при быстром заказе, и может удалить половину корзины, что он делает не так? Я конечно, отпишу в поддержку яши, но вдруг кто-то наметанным глазом найдет, где собака зарыта. в product.php это класс Спойлер public function getProductDataForYandexMetrica() { $this->load->model('catalog/category'); $this->load->model('catalog/product'); if (isset($this->request->post['event'])) { $event = $this->request->post['event']; } else { $event = 'add'; } if (isset($this->request->post['id_type']) && $this->request->post['id_type'] == 'key') { $this->load->model('extension/module/yandex_metrica'); $product_data_from_cart = $this->model_extension_module_yandex_metrica->getProductFromCart($this->request->post['id']); 1916-> $product_id = $product_data_from_cart['product_id']; } elseif (isset($this->request->post['id'])) { $product_id = (int)$this->request->post['id']; } else { $product_id = 0; } if (isset($this->request->post['quantity']) && $this->request->post['quantity'] === 'null' && $this->request->post['id_type'] === 'key') { 1924-> $quantity = $product_data_from_cart['quantity']; } elseif (isset($this->request->post['quantity']) && $this->request->post['quantity'] === 'null' && $this->request->post['id_type'] === 'product_id' && $event === 'add') { $quantity = 1; } else { $quantity = (int)$this->request->post['quantity']; } if ($product_id === 0) { $this->load->model('setting/setting'); $log_status = $this->model_setting_setting->getSettingValue('analytics_yandex_metrica_log'); if ($log_status) { $log_ym = new Log('log_yandex_metrica.log'); $log_ym->write('Required parameters not found (ID)', true); } } 0 Quote Link to comment Share on other sites More sharing options...
Sig Posted April 8, 2023 at 08:11 AM Share Posted April 8, 2023 at 08:11 AM Происходит все из-за того, что $product_data_from_cart = $this->model_extension_module_yandex_metrica->getProductFromCart($this->request->post['id']); возвращает пустой массив. В метрику при такой работе будут неверные данные отправляться. Что там именно не так, я не скажу. Чтобы корзину починить, можете отключить в настройках магазина (вкладка Сервер) показ ошибок. Это позволить избавиться от ошибки "SyntaxError...." 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.