Skip to content

Instantly share code, notes, and snippets.

@tdmrhn
Created August 1, 2022 11:49
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 tdmrhn/c3bc58762cae712fa168c2c10bf5b1a5 to your computer and use it in GitHub Desktop.
Save tdmrhn/c3bc58762cae712fa168c2c10bf5b1a5 to your computer and use it in GitHub Desktop.
Blocksy thank you page hooks
<?php
// before table
add_action( 'woocommerce_thankyou_order_received_text', function ( $order_id ) {
echo do_shortcode( '[blocksy-content-block id="XXX"]' );
});
// after table
add_action( 'woocommerce_thankyou', function ( $order_id ) {
echo do_shortcode( '[blocksy-content-block id="XXX"]' );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment