Files
2026-04-28 15:13:50 +02:00

21 lines
784 B
JavaScript

(function($, wp) {
"use strict";
$(document).ready(function(){
if( typeof fbq === "function" ){
$(this.body).on( 'added_to_cart', function( event, fragments, cart_hash, button ){
var product_id = button.data('product_id');
wp.ajax.post('add_to_cart_facebook_pixel', {product_id: product_id, nonce: woo_feed_facebook_pixel_params.nonce})
.done(function(response){
if( response.length > 0 ) {
fbq( 'track', 'AddToCart', response );
}
})
.fail(function (){
console.log( "Request Failed!" );
});
} );
}
});
})(jQuery, wp);