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

7 lines
242 B
PHP
Raw Normal View History

2024-05-02 17:51:32 +00:00
<?php
add_action( 'woocommerce_before_thankyou', 'misha_shortcode_or_content' );
function misha_shortcode_or_content( $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
}