Skip to content

Commit cc4af2e

Browse files
release: fixes
- Fixed issue with Marketing starter site import
2 parents 38da56a + ac55c41 commit cc4af2e

2 files changed

Lines changed: 13 additions & 8 deletions

File tree

composer.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

includes/Importers/Content_Importer.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,11 @@ function ( $key ) {
317317
ARRAY_FILTER_USE_KEY
318318
);
319319

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+
320325
$db->$insert( $form['data'] );
321326

322327
$payment_form_options[ $form['data']['name'] ] = array(

0 commit comments

Comments
 (0)