Skip to content

Instantly share code, notes, and snippets.

@sharnie
Created July 11, 2019 23:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sharnie/ab1bf44723c07f39fed536b05da64269 to your computer and use it in GitHub Desktop.
Save sharnie/ab1bf44723c07f39fed536b05da64269 to your computer and use it in GitHub Desktop.
((productId, productPrice) => {
'use strict';
window.fbq(
'track',
'Purchase', {
content_type: 'product_group',
content_ids: `[${productId}]`,
value: productPrice,
num_items: 1,
currency: 'USD'
}
);
})('PRODUCT_ID', 0.00);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment