0
このイベントを構成するのに本当に問題があります。私はQubit.comのタグマネージャーを使用しています。これは私が '製品の表示'イベントに使用したコードです。Facebook Pixel '製品を表示'イベントが追跡されない
このイベントは追跡されていないため、理由はわかりません。これはコードです
function() {
var _this = this;
console.log('1 FB ViewContent Start');
var product_ids = [];
if(universal_variable.transaction.line_items){
for (var i = 0; i < universal_variable.transaction.line_items.length; i++) {
product_ids.push(universal_variable.transaction.line_items[i].product.sku_code)
}
}
console.log('2 FB ViewContent Product List Compiled');
fbq('track', 'ViewContent', {
content_ids: product_ids,
content_type: 'product',
value: "" + _this.valueForToken("ORDER_TOTAL"),
currency: "" + _this.valueForToken("CURRENCY_CODE")
});
console.log('3 FB ViewContent Tracked');
}