11 lines
327 B
PHP
11 lines
327 B
PHP
<?php
|
|
|
|
if( ! defined( 'ABSPATH' ) ){
|
|
exit; // Exit if accessed directly.
|
|
}
|
|
|
|
add_action( 'woocommerce_before_thankyou', 'federated_thank_you_page_message' );
|
|
|
|
function federated_thank_you_page_message( $order_id ) {
|
|
echo '<h3>Please check your email to confirm account creation. Your core is now being provisioned.</h3>';
|
|
} |