10 lines
615 B
PHP
10 lines
615 B
PHP
|
<?php
|
||
|
|
||
|
add_action( 'woocommerce_before_thankyou', 'misha_shortcode_or_content' );
|
||
|
|
||
|
function misha_shortcode_or_content( $order_id ) {
|
||
|
echo '<h3>You will receive an email within 15 minutes of this order with your login details. Please watch the welcome video below for your next steps.</h3>';
|
||
|
echo '<br />';
|
||
|
echo '<iframe width="560" height="315" src="https://www.youtube.com/embed/XhAii76twMM?si=R_2v9CFNR33fhjh6" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>';
|
||
|
echo '<br />';
|
||
|
}
|