一部のユーザーにはまだこの機能は提供されていません。近日中にご利用いただけるようになりますので、しばらくお待ちください。
商品のコンバージョン目標は、フィード ベース キャンペーンが最終的にコンバージョンにつながる広告がそれらのコンバージョンに対してクレジットを取得するのに役立ちます。利用方法には 2 つの方法があります。
商品のコンバージョン目標と動的リマーケティングの違いは何ですか?商品のコンバージョン目標は Web サイトでの購入またはその他のコンバージョンを追跡するのに使うことができます。動的リマーケティングでは、Web サイトですでに購入済みまたは商品を利用したことがあるユーザーに広告を表示する方法を知ることができます。動的リマーケティングの詳細情報はこちら。
商品のコンバージョン目標の設定を開始する前に、以下の準備をしてください。
<head>Your page title// オプション 1: ここに UET タグを挿入します。"head" タグの間です。
</head>
<body>// オプション 2: ここに UET タグを挿入します。"body" タグの開始直後です。
...
<button>Buy now</button>
...
</body>
<head>Your page title
</head>
<body>// ここに ステップ 1 で UET タグを貼り付けたとします。
<script>Your UET tag is here.</script>// ここに以下の JavaScript を貼り付けます:
<script>
window.uetq = window.uetq || [];
window.uetq.push ('event', 'PRODUCT_PURCHASE', {'ecomm_prodid': 'REPLACE_WITH_PRODUCT_ID', 'ecomm_pagetype': 'PURCHASE'});
</script>
...
<button>Buy now</button>
...
</body>
<head>Your page title
</head>
<body>
<script>Your UET tag is here.</script>
<script>function GetProductEvent() {
window.uetq = window.uetq || [];
window.uetq.push ('event', 'PRODUCT_PURCHASE', {'ecomm_prodid': 'REPLACE_WITH_PRODUCT_ID', 'ecomm_pagetype': 'PURCHASE'});}
</script>
...
<button>Buy now</button>
...
</body>
<head>Your page title
</head>
<body>
<script>Your UET tag is here.</script>
</script>
<script>
function GetProductEvent() {
window.uetq = window.uetq || [];
window.uetq.push ('event', 'PRODUCT_PURCHASE', {'ecomm_prodid': 'REPLACE_WITH_PRODUCT_ID', 'ecomm_pagetype': 'PURCHASE'});
}
</script>
...
<button OnClick="GetProductEvent()">Buy now</button>
...
</body>
<script>
function GetProductEvent() {
window.uetq = window.uetq || [];
window.uetq.push ('event', 'PRODUCT_PURCHASE', {'ecomm_prodid': 'REPLACE_WITH_PRODUCT_ID', 'ecomm_pagetype': 'PURCHASE', 'revenue_value': Replace_with_Variable_Revenue_Function(), 'currency': 'Replace_with_Currency_Code'});
}
</script>
<script>
function GetProductEvent() {
window.uetq = window.uetq || [];
window.uetq.push ('event', 'PRODUCT_PURCHASE', {'ecomm_prodid': 'REPLACE_WITH_PRODUCT_ID', 'ecomm_pagetype': 'PURCHASE', 'currency': 'Replace_with_Currency_Code', 'items': [{'id': 'Replace_with_product_ID', 'quantity': 'Replace_with_quantity', 'price': 'Replace_with_selling_price' }, {'id': 'Replace_with_product_ID', 'quantity': 'Replace_with_quantity', 'price': 'Replace_with_selling_price'}] });
}
</script>