7 lines
242 B
PHP
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>';
|
|
} |