woocommerce_sequracheckout_process_payment
Hook
Action
Allow plugins to run when payment is being processed
Description
Allow executing custom code when payment is being processed by the seQura payment gateway
Parameter | Type | Description |
---|---|---|
$order | WC_Order | WooCommerce Order |
$instance | SeQura\WC\Services\Payment\Sequra_Payment_Gateway | Payment gateway instance |
Changelog
Version | Description |
---|---|
2.0.0 | Introduced |
Usage Example
add_action('woocommerce_sequracheckout_process_payment', function($order, $instance){
// Your custom code here...
});
Updated about 1 month ago