Adding content before the order details on the thank you page - Woocommerce

Hi, I was looking for how to add content before the order details using a hook, and although I “found” some that didn’t work. I don’t have much knowledge about this either. So I looked for it to be possible through the bricks docs, and it wasn’t possible either, so I came here to see how to make it possible, since it’s a whole block. So I am looking for help on how I can add this content as it is in the image.

1 Like

I managed to show it with this hook:

add_action( 'woocommerce_thankyou', 'custom_message_woo_thankyou', 5 );
function custom_message_woo_thankyou() {
  echo do_shortcode( '[bricks_template id="0000"]' );
}
2 Likes