Skip to content

Instantly share code, notes, and snippets.

@MaximilianoRicoTabo
Created August 15, 2024 20:51
Show Gist options
  • Save MaximilianoRicoTabo/06e43dc8b575f97438623b2b550d73e2 to your computer and use it in GitHub Desktop.
Save MaximilianoRicoTabo/06e43dc8b575f97438623b2b550d73e2 to your computer and use it in GitHub Desktop.
Example of how to get Order code in confirmation page
<?php
add_action('init', 'pmpro_example_code');
function pmpro_example_code() {
?>
<script>
document.addEventListener('DOMContentLoaded', function() {
const code = pmpro.code;
console.log(code);
});
</script>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment