2024-05-02 17:51:32 +00:00
|
|
|
<?php
|
|
|
|
|
2024-10-08 16:00:45 +00:00
|
|
|
add_action( 'woocommerce_before_thankyou', 'federated_thank_you_page_message' );
|
2024-05-02 17:51:32 +00:00
|
|
|
|
2024-10-08 16:00:45 +00:00
|
|
|
function federated_thank_you_page_message( $order_id ) {
|
2024-05-08 18:08:42 +00:00
|
|
|
echo '<h3>Please check your email to confirm account creation. Your core is now being provisioned.</h3>';
|
2024-05-02 17:51:32 +00:00
|
|
|
}
|