federated-wordpress-customi.../woocommerce/thank_you_page_customizations.php
2024-05-08 12:08:42 -06:00

7 lines
242 B
PHP

<?php
add_action( 'woocommerce_before_thankyou', 'misha_shortcode_or_content' );
function misha_shortcode_or_content( $order_id ) {
echo '<h3>Please check your email to confirm account creation. Your core is now being provisioned.</h3>';
}