We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dcf2431 + 75911d9 commit 59f5436Copy full SHA for 59f5436
1 file changed
includes/Importers/Content_Importer.php
@@ -317,6 +317,11 @@ function ( $key ) {
317
ARRAY_FILTER_USE_KEY
318
);
319
320
+ // Remove fee recovery currency if exists, as it was removed from the per form setting in latest version.
321
+ if ( isset( $form['data']['feeRecoveryCurrency'] ) ) {
322
+ unset( $form['data']['feeRecoveryCurrency'] );
323
+ }
324
+
325
$db->$insert( $form['data'] );
326
327
$payment_form_options[ $form['data']['name'] ] = array(
0 commit comments