The payment gateway plugin for woocommerce doesn't currently support iframes or lightboxes out of the box, only redirects:
public function process_payment( $order_id ) {
...
return [
'result' => 'success',
'redirect' => esc_url_raw( $hppURL ),
];
...
}
You offer examples in AccessWorldpayHPP.php and iframeHPP.php to do this manually but this isn't compatible without editing your plugin or overriding your code.
Is HPP via iframe/lightboxes in the woocommerce plugin an up coming feature?
The payment gateway plugin for woocommerce doesn't currently support iframes or lightboxes out of the box, only redirects:
You offer examples in AccessWorldpayHPP.php and iframeHPP.php to do this manually but this isn't compatible without editing your plugin or overriding your code.
Is HPP via iframe/lightboxes in the woocommerce plugin an up coming feature?