Created
August 15, 2024 20:51
-
-
Save MaximilianoRicoTabo/06e43dc8b575f97438623b2b550d73e2 to your computer and use it in GitHub Desktop.
Example of how to get Order code in confirmation page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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