thank you page declaration

This commit is contained in:
Ross Trottier 2024-10-08 10:00:45 -06:00
parent 7514d9adfe
commit b2a31d8521

View File

@ -1,7 +1,7 @@
<?php
add_action( 'woocommerce_before_thankyou', 'misha_shortcode_or_content' );
add_action( 'woocommerce_before_thankyou', 'federated_thank_you_page_message' );
function misha_shortcode_or_content( $order_id ) {
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>';
}