Payment Transaction ID
-
Hi there
WooCommerce has a built in function that saves a Transaction ID to an order. This was documented in it’s release here.
We have a site that we recently integrated a sync with QuickBooks that push all our orders through. However the plugin relies on the order meta with the key
_transaction_id
which can be quiet easily added with your plugin.Currently you guys do make used of the function as
$order->payment_complete();
and all that would be needed it passing it a variable like$order->payment_complete( $check_pjn_token );
which is currently available in the plugin code.
- The topic ‘Payment Transaction ID’ is closed to new replies.