Skip to content

Instantly share code, notes, and snippets.

@antsanchez
Last active May 25, 2017 07:40
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 antsanchez/9d5cff3bda89bb256162cbde0895adea to your computer and use it in GitHub Desktop.
Save antsanchez/9d5cff3bda89bb256162cbde0895adea to your computer and use it in GitHub Desktop.
Seguimiento de conversiones en WooCommerce
/**
* Añade el código de conversion en la página de confirmación de compra
*/
add_action( 'woocommerce_thankyou', 'my_conversion_tracking_function' );
function my_conversion_tracking_function() {
?>
// Aquí el script de Analytics o AdWords
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment