具有功能的Facebook像素助手(e)

时间:2017-05-03 16:58:58

标签: javascript php jquery html facebook

我需要一些帮助。我使用的是opencart 1.5.6,在类别页面上我有这个代码:

<a data-price='<?php echo $price; ?>' data-id='<?php echo $product_id; ?>' id="wish_list_pixel" title="<?php echo $this->language->get('button_wishlist'); ?>" onclick="addToWishList('<?php echo $product['product_id']; ?>');">

在同一页上我有:

<script type="text/javascript">
    $( '#wish_list_pixel' ).on('click', function(e) {
        fbq('track', 'AddToWishlist', {
            content_ids: [$(e.target).data('id')],
            content_type: 'product',
            value: $(e.target).data('price'),
            currency: 'RON'
        });
    });
</script>

在Facebook像素助手上,它只看到了这一点:

Pixel Code:
fbq('track', 'AddToWishlist', {
content_ids: [$(e.target)

并且不要向Facebook发送任何信息。

0 个答案:

没有答案