add_action( 'woocommerce_thankyou', 'my_custom_tracking' );
function my_custom_tracking( $order_id ) {
$order = new WC_Order( $order_id );
$total = $order->get_subtotal();
$id = str_replace('#', '', $order->get_order_number());
echo '<iframe height='1' width='1' scrolling='no' marginheight='0' marginwidth='0' frameborder='0' src='https://event.2performant.com/events/salecheck?amount=' . $total . '&track_id=' . $id . '&campaign_unique=CAMPAIGN_UNIQUE&confirm=CONFIRM& description=ADD_DESCRIPTION&transaction_id=ADD_TRA NSACTION_ID'></iframe>';
}