Ищете систему которая умеет работать с ремаркетингом и электронной коммерцией? Вам стоит установить последнюю версию OneBox - там это возможно!
Установить последнюю версию системы
How to set up e-commerce and remarketing?
In Google Ads, there is an error with the source of the audience, and in analytics, there is also an error.
https://prnt.sc/vi1h17
https://prnt.sc/vi1gmp
There is integration with Google /admin/shop/settings/google/
But it is not clear where and what code to insert, can there be some kind of instruction?
What values should be here? https://prnt.sc/vi1rc8
How to set up e-commerce and remarketing? In Google Ads, there is an error with the source of the audience, and in analytics, there is also an error. https://prnt.sc/vi1h17 https://prnt.sc/vi1gmp There is integration with Google /admin/shop/settings/google/ But it is not clear where and what code to insert, can there be some kind of instruction? What values should be here? https://prnt.sc/vi1rc8
through the code insertion block, you can insert the remarketing code and specify the type in the variables like this <!-- GoogleRemarketing --> <script> gtag('event', 'page_view', { 'send_to': 'AW-972829958', 'value':'{|$dynx_totalvalue|}', 'items': [{ 'id': '{|$dynx_itemid|}', 'google_business_vertical': 'retail' }] }); </script>
through the code insertion block, you can insert the remarketing code and specify the type in the variables like this
<!-- GoogleRemarketing -->
<script>
gtag('event', 'page_view', {
'send_to': 'AW-972829958',
'value':'{|$dynx_totalvalue|}',
'items': [{
'id': '{|$dynx_itemid|}',
'google_business_vertical': 'retail'
}]
});
</script>
Ustimenko Igor OneBox CTO wrote: through the code insertion block, you can insert the remarketing code and specify the type in the variables like this <!-- GoogleRemarketing --> <script> gtag('event', 'page_view', { 'send_to': 'AW-972829958', 'value':'{|$dynx_totalvalue|}', 'items': [{ 'id': '{|$dynx_itemid|}', 'google_business_vertical': 'retail' }] }); </script>
thanks, I'll try. and so that the conversions pass what code is needed and where to insert it?
[quote]
Ustimenko Igor
OneBox CTO wrote:
through the code insertion block, you can insert the remarketing code and specify the type in the variables like this
<!-- GoogleRemarketing -->
<script>
gtag('event', 'page_view', {
'send_to': 'AW-972829958',
'value':'{|$dynx_totalvalue|}',
'items': [{
'id': '{|$dynx_itemid|}',
'google_business_vertical': 'retail'
}]
});
</script>
[/quote]
thanks, I'll try. and so that the conversions pass what code is needed and where to insert it?
Ustimenko Igor OneBox CTO wrote: through the code insertion block, you can insert the remarketing code and specify the type in the variables like this <!-- GoogleRemarketing --> <script> gtag('event', 'page_view', { 'send_to': 'AW-972829958', 'value':'{|$dynx_totalvalue|}', 'items': [{ 'id': '{|$dynx_itemid|}', 'google_business_vertical': 'retail' }] }); </script>
thanks, I'll try. and so that the conversions pass what code is needed and where to insert it?
you get the code in google account it also describes where to insert it - you will need to go to the settings of the IM template and find them
[quote]
Alexander
Client wrote:
[quote]
Ustimenko Igor
OneBox CTO wrote:
through the code insertion block, you can insert the remarketing code and specify the type in the variables like this
<!-- GoogleRemarketing -->
<script>
gtag('event', 'page_view', {
'send_to': 'AW-972829958',
'value':'{|$dynx_totalvalue|}',
'items': [{
'id': '{|$dynx_itemid|}',
'google_business_vertical': 'retail'
}]
});
</script>
[/quote]
thanks, I'll try. and so that the conversions pass what code is needed and where to insert it?
[/quote]
you get the code in google account
it also describes where to insert it - you will need to go to the settings of the IM template and find them
Ustimenko Igor OneBox CTO wrote: through the code insertion block, you can insert the remarketing code and specify the type in the variables like this <!-- GoogleRemarketing --> <script> gtag('event', 'page_view', { 'send_to': 'AW-972829958', 'value':'{|$dynx_totalvalue|}', 'items': [{ 'id': '{|$dynx_itemid|}', 'google_business_vertical': 'retail' }] }); </script>
I need to post this code, how can I do it? 2. The following tags for dynamic remarketing must be placed on the relevant pages of the site: on the product view page: gtag('event', 'view_item', { 'send_to': 'AW-983983579', 'value': <Product price>, 'items': [{ 'id': <Product ID>, 'google_business_vertical': 'retail' }] }); when adding an item to the cart: gtag('event', 'add_to_cart', { 'send_to': 'AW-983983579', 'value': <Product price>, 'items': [{ 'id': <Product ID>, 'google_business_vertical': 'retail' }] }); on the successful order page: let PRODUCT_LIST = []; // List of goods PRODUCT_LIST.push( id: <Product ID>, google_business_vertical: 'retail' ); gtag('event', 'purchase', { 'send_to': 'AW-983983579', 'value': <order amount>, 'items': PRODUCT_LIST });
[quote]
Ustimenko Igor
OneBox CTO wrote:
through the code insertion block, you can insert the remarketing code and specify the type in the variables like this
<!-- GoogleRemarketing -->
<script>
gtag('event', 'page_view', {
'send_to': 'AW-972829958',
'value':'{|$dynx_totalvalue|}',
'items': [{
'id': '{|$dynx_itemid|}',
'google_business_vertical': 'retail'
}]
});
</script>
[/quote]
I need to post this code, how can I do it?
2. The following tags for dynamic remarketing must be placed on the relevant pages of the site:
on the product view page:
gtag('event', 'view_item', {
'send_to': 'AW-983983579',
'value': <Product price>,
'items': [{
'id': <Product ID>,
'google_business_vertical': 'retail'
}]
});
when adding an item to the cart:
gtag('event', 'add_to_cart', {
'send_to': 'AW-983983579',
'value': <Product price>,
'items': [{
'id': <Product ID>,
'google_business_vertical': 'retail'
}]
});
on the successful order page:
let PRODUCT_LIST = []; // List of goods
PRODUCT_LIST.push(
id: <Product ID>,
google_business_vertical: 'retail'
);
gtag('event', 'purchase', {
'send_to': 'AW-983983579',
'value': <order amount>,
'items': PRODUCT_LIST
});
Please join the conversation. If you have something to say - please write a comment. You will need a mobile phone and an SMS code for identification to enter.
Log in and comment
Donate
You don't have enough funds in your account Top up