federated-wordpress-customi.../woocommerce/thank_you_page_customizations.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>';
}