federated-wordpress-customi.../woocommerce/thank_you_page_customizations.php

7 lines
254 B
PHP
Raw Normal View History

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 ) {
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
}