This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Add a new action button for the thank you page for each order | |
// WooCommerce version 3.3+ | |
add_action( 'woocommerce_admin_order_actions_end', 'add_thankyou_page_action_button', 100, 1 ); | |
function add_thankyou_page_action_button( $order ) { | |
// Add more order status here | |
if ( $order->has_status( array( 'processing', 'completed', 'partial-comp' ) ) ) { |