Commit 8077c8084eeecf4034644d1de4c3aa6a1ea8b685

Authored by Alex Savenko
1 parent aac141ff

remarketing

frontend/views/order/index.php
... ... @@ -15,7 +15,7 @@ $this->params[ 'seo' ][ Seo::TITLE] = $this->title;
15 15 * @var ProductVariant[] $models
16 16 * @var Basket $basket
17 17 */
18   -$this->params['remarketing']['type'] = 'conversionintent';
  18 +$this->params['remarketing']['type'] = 'conversion';
19 19 $this->params['remarketing']['id'] = '';
20 20 $this->params['remarketing']['price'] = '';
21 21 if (count($models) > 1) {
... ...
frontend/views/order/success.php
... ... @@ -11,7 +11,7 @@
11 11 $variants = $order_data[ 'variants' ];
12 12  
13 13 $products = $order->getProducts();
14   - $this->params['remarketing']['type'] = 'conversionintent';
  14 + $this->params['remarketing']['type'] = 'conversion';
15 15 $this->params['remarketing']['id'] = '';
16 16 $this->params['remarketing']['price'] = '';
17 17 if (count($products) > 1) {
... ...