I found the answer…
I added…
/**
* Auto Complete all WooCommerce orders.
*/
add_action( ‘woocommerce_thankyou’, ‘custom_woocommerce_auto_complete_order’ );
function custom_woocommerce_auto_complete_order( $order_id ) {
if ( ! $order_id ) {
return;
}
$order = wc_get_order( $order_id );
$order->update_status( ‘completed’ );
}
to the bottom of my theme’s functions.php file.. found at..
C:\HardDrive\Robert King\ALU\aluownership_website\wp-content\themes\Avada\functions.php
and it auto completed the order..
and then as a result auto sent the tickets.
Thanks,
Great plugin!!