Skip to content

Instantly share code, notes, and snippets.

@lynt-smitka
Created April 27, 2022 07:46
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 lynt-smitka/87283c4c41dc7d8a0a5712643a3b6070 to your computer and use it in GitHub Desktop.
Save lynt-smitka/87283c4c41dc7d8a0a5712643a3b6070 to your computer and use it in GitHub Desktop.
<?php
/*
Plugin Name: Ukazka vlozeni skriptu na thankyou page
*/
function lynt_ukazkova_akce( $order_id ) {
?>
<script>
console.log("thank you!");
</script>
<?php
}
add_action( "woocommerce_thankyou", "lynt_ukazkova_akce")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment