Skip to content

Instantly share code, notes, and snippets.

@krugazul
Last active December 17, 2021 08:53
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save krugazul/13209fbbb694638cb9f6 to your computer and use it in GitHub Desktop.
Save krugazul/13209fbbb694638cb9f6 to your computer and use it in GitHub Desktop.
WP All import - Filters for use when importing data for different plugins

WP All Import Filters

  • PODS
  • WC Subscription
  • General

PODS

pods-checkbox-custom-fields.php

When importing custom fields that are not unique (multiple values with the same meta_key), PODS adds a filter to force the data t save as "unique". So you only end up with 1 values from your array saved.

WC Subscription

General

  • WordPress
  • WooCommerce
  • Formatting

WordPress

Linking Entries

Grab the term_id or post_id from the meta tables, by the old id you stored.

[cb_get_object_id( {old_id[1]}, "_old_id", "post" ) ]

Output the name of the new term by the old id. Useful if you product CSV has numbers for categories instead of names.

[cb_get_term_name_from_old_id( {old_id[1]}, "_old_id" ) ]

WooCommerce

Tax

Set the tax and shipping classes.

[cb_wc_taxable_status( {field[1]} ) ]

Shipping

Use the following in converting units for the shipping dimensions.

[cb_convert_unit( {weight[1]}, {weight_units[1]}, "g" ) ]

[cb_convert_unit( {length[1]}, {length_units[1]}, "cm" ) ]

[cb_convert_unit( {width[1]}, {width_units[1]}, "cm" ) ]

[cb_convert_unit( {height[1]}, {height_units[1]}, "cm" ) ]

Catalog Visibility

add_action('pmxi_update_post_meta', 'cb_wc_set_catalog_visibility', 10, 3);

Featured Product

add_action('pmxi_update_post_meta', 'cb_wc_set_featured', 10, 3);

Formatting

Converting Units

[cb_convert_unit( {field[1]}, "kg", "g" ) ]

Line Items

If your line items are exported into a json string, you can use the following to run through the array of stdClasses and grab a certain index.

[cb_wc_line_item_info( {line_items[1]}, "name" ) ]

e.g "Plugin 1" or multiple items "Plugin 1|Plugin 2"

<?php
/**
* Get the object ID from the meta using a key and value.
*
* g -> kg
* kg -> g
*
* cm -> m
* m -> cm
*
* @param $value string
* @param $current_unit string
* @param $desired_unit string
* @return string
*/
function cb_convert_unit( $value = '', $current_unit = '', $desired_unit = '' ) {
if ( 'NULL' !== $value && ( $current_unit !== $desired_unit ) && ( '' !== $value || '' !== $current_unit ||'' !== $desired_unit ) ) {
$current_unit = strtolower( trim ( $current_unit ) );
$desired_unit = strtolower( trim ( $desired_unit ) );
$value = str_replace( '.00', '', $value );
$direction = false;
$step = 1;
switch ( $current_unit ) {
case 'cm':
case 'g':
if ( in_array( $desired_unit, array( 'kg', 'km' ) ) ) {
$direction = 'up';
$step = 1000;
} else if ( in_array( $desired_unit, array( 'm' ) ) ) {
$direction = 'up';
$step = 100;
} else if ( in_array( $desired_unit, array( 'mm' ) ) ) {
$direction = 'down';
$step = 10;
}
break;
case 'kg':
case 'm':
if ( in_array( $desired_unit, array( 'g', 'mm' ) ) ) {
$direction = 'down';
$step = 1000;
} else if ( in_array( $desired_unit, array( 'cm' ) ) ) {
$direction = 'down';
$step = 100;
} else if ( in_array( $desired_unit, array( 'km' ) ) ) {
$direction = 'up';
$step = 1000;
}
break;
default:
break;
}
if ( false !== $direction ) {
if ( 'up' === $direction ) {
$value = round( $value / $step, 2 ); // amount of "full" kilometers
} else if ( 'down' === $direction ) {
$value = round( $value * $step, 2 ); // amount of "full" kilometers
}
}
}
return $value;
}
function cb_seperate_download_files( $value, $index = 0 ) {
$parts = explode( $value );
if ( is_array( $parts && isset( $parts[ $index ] ) ) ) {
$value = $parts[ $index ];
}
}
<?php
/**
* Returns the taxable status
*
* @category Pre Custom Field Filter
*
* @param $value string
* @return string
*/
function cb_wc_taxable_status( $value = '' ) {
$return = 'shipping';
$value = strtolower( trim( $value ) );
if ( true === $value || 'true' === $value || 'yes' === $value) {
$return = 'taxable';
}
return $return;
}
/**
* Returns the sanitized product attribute title
*
* @category Pre Custom Field Filter
*
* @param $value string
* @return string
*/
function cb_wc_sanitized_product_attribute( $value = '' ) {
$return = 'shipping';
$value = strtolower( trim( $value ) );
if ( true === $value || 'true' === $value || 'yes' === $value) {
$return = 'taxable';
}
return $return;
}
/**
* Sets the product to hidden if a certain value is found
*
* @category Custom Field Update Filter
*
*
* @param $post_id string
* @param $meta_key string
* @param $meta_value string
* @return void
*/
function cb_wc_set_catalog_visibility( $post_id = '', $meta_key = '', $meta_value = '' ) {
$value = strtolower( $meta_value );
$haystack = array( 'null', false, 'false', 'no', 'off' );
if ( '_active' === $meta_key && in_array( $value, $haystack ) ) {
wp_set_object_terms( $post_id, array( 'exclude-from-search', 'exclude-from-catalog' ), 'product_visibility', false );
}
delete_post_meta( $post_id, '_active', $meta_value );
}
add_action('pmxi_update_post_meta', 'cb_wc_set_catalog_visibility', 10, 3);
/**
* Sets the product to hidden if a certain value is found. Make sure this is run after cb_wc_set_catalog_visibility(), as well as the catalog visibility is imported before the featured data.
*
* @category Custom Field Update Filter
*
*
* @param $post_id string
* @param $meta_key string
* @param $meta_value string
* @return void
*/
function cb_wc_set_featured( $post_id = '', $meta_key = '', $meta_value = '' ) {
$value = strtolower( $meta_value );
$haystack = array( 'true', true, 'yes', 'on' );
if ( '_featured' === $meta_key && in_array( $value, $haystack ) ) {
wp_set_object_terms( $post_id, array( 'featured' ), 'product_visibility', true );
}
delete_post_meta( $post_id, '_featured', $meta_value );
}
add_action('pmxi_update_post_meta', 'cb_wc_set_featured', 10, 3);
/**
* Returns the order status based on the value you send it
*
* @category Pre Custom Field Filter
*
* @param $value string
* @return string
*/
function cb_wc_order_status( $value = '' ) {
$return = 'wc-pending';
$value = strtolower( trim( $value ) );
if ( 'shipped' === $value || 'complete' === $value ) {
$return = 'wc-completed';
} else if ( 'in process' === $value || 'new' === $value ) {
$return = 'wc-pending';
} else if ( 'billed' === $value ) {
$return = 'wc-processing';
} else if ( 'temp' === $value ) {
$return = 'wc-on-hold';
} else if ( 'cancelled' === $value ) {
$return = 'wc-cancelled';
} else if ( 'blocked' === $value ) {
$return = 'wc-failed';
}
return $return;
}
/**
* Splits the line item json and returns a the value of the key array. Returns a blank value if the index does not exist.
*
* @param $value
* @param string $type e.g total|quantity|name
*
* @return string
*/
function cb_wc_line_item_info( $value, $type = 'total' ) {
$items = json_decode( $value );
$value = '';
if ( ! empty( $items ) ) {
if ( ! is_array( $items ) ) {
$items = array( $items );
}
$output = array();
foreach ( $items as $item ) {
if ( isset( $item, $type ) && '' !== $item->$type ) {
$output[] = $item->$type;
} else if ( 'sku' === $type && isset( $item, $type ) && '' === $item->$type ) {
$output[] = sanitize_title( $item->name );
}
}
$value = implode( '|', $output );
}
return $value;
}
<?php
/**
* Get the object ID from the meta using a key and value.
*
* @param $meta_value string
* @param $meta_key string
* @param $type string 'post' | 'taxonomy'
* @return string
*/
function cb_get_object_id( $meta_value = '', $meta_key = '', $type = '' ) {
global $wpdb;
$result = false;
$id = false;
$meta_value = preg_replace( "/[^0-9]/","", $meta_value );
if ( 'post' === $type ) {
$result = $wpdb->get_var("SELECT post_id FROM `{$wpdb->postmeta}` WHERE meta_key = '{$meta_key}' AND meta_value = '{$meta_value}' " );
} else if ( 'taxonomy' === $type ) {
$result = $wpdb->get_var("SELECT term_id FROM `{$wpdb->termmeta}` WHERE meta_key = '{$meta_key}' AND meta_value = '{$meta_value}' " );
} else if ( 'user' === $type ) {
$result = $wpdb->get_var("SELECT user_id FROM `{$wpdb->usermeta}` WHERE meta_key = '{$meta_key}' AND meta_value = '{$meta_value}' " );
}
if ( false !== $result && ! empty( $result ) ) {
$id = $result;
}
return $id;
}
/**
* Get the user_email from the user_ID.
*
* @param $user_id string
* @return string
*/
function cb_get_useremail( $user_id = '' ) {
global $wpdb;
$result = false;
$user_login = $user_id;
if ( '' !== $user_id ) {
$result = $wpdb->get_var("SELECT user_email FROM `{$wpdb->users}` WHERE ID = '{$user_id}' " );
}
if ( false !== $result && ! empty( $result ) ) {
$user_login = $result;
}
return $user_login;
}
/**
* Get the user_login from the user_ID.
*
* @param $user_id string
* @return string
*/
function cb_get_username( $user_id = '' ) {
global $wpdb;
$result = false;
$user_login = $user_id;
if ( '' !== $user_id ) {
$result = $wpdb->get_var("SELECT user_login FROM `{$wpdb->users}` WHERE ID = '{$user_id}' " );
}
if ( false !== $result && ! empty( $result ) ) {
$user_login = $result;
}
return $user_login;
}
/**
* Returns the post status based on the value.
*
* 'publish' = true (bool) | true | yes
* 'draft' = anything else
*
* @param $value string
* @return string
*/
function cb_post_status( $value = '' ) {
$return = 'draft';
$value = strtolower( trim( $value ) );
if ( true === $value || 'true' === $value || 'yes' === $value) {
$return = 'publish';
}
return $return;
}
/**
* Get the object ID from the meta using a key and value.
*
* @param $meta_value string
* @param $meta_key string
* @return string
*/
function cb_get_term_name_from_old_id( $meta_value = '', $meta_key = '' ) {
global $wpdb;
$id = false;
$meta_value = preg_replace( "/[^0-9]/","", $meta_value );
$result = $wpdb->get_var("SELECT term_id FROM `{$wpdb->termmeta}` WHERE meta_key = '{$meta_key}' AND meta_value = '{$meta_value}' " );
if ( false !== $result && ! empty( $result ) ) {
$term = get_term( $result, 'product_cat' );
if ( false !== $term && ! is_wp_error( $term ) ) {
$id = $term->name;
}
}
return $id;
}
/**
* Returns the user role based on the values.
*
* @param $value string
* @return string
*/
function cb_user_role( $value = '' ) {
$return = 'customer';
$value = str_replace( array( '[', ']' ), '', $value );
$value = strtolower( trim( $value ) );
$values = explode( ',', $value );
if ( ! empty( $values ) ) {
// Look for WooCommerce Customer
//Look for an author flag
if ( in_array( '3', $values ) ) {
$return = 'subscriber';
}
//Look for an author flag
if ( in_array( '1', $values ) || in_array( '8', $values ) || in_array( '4', $values ) || in_array( '7', $values ) || in_array( '2', $values ) || in_array( '10', $values ) ) {
$return = 'shop_manager';
}
//look for an administrator flag.
if ( in_array( '5', $values ) || in_array( '6', $values ) || in_array( '9', $values ) ) {
$return = 'administrator';
}
}
return $return;
}
/**
* Runs after the products import and reconnects the comments.
*
* @uses cb_get_object_id()
* @param $meta_key string
* @param $current_id int
* @return string
*/
function cb_connect_comments( $current_id = 0, $meta_key = '' ) {
$return = '';
if ( false !== $current_id ) {
$old_id = get_post_meta( $current_id, $meta_key, true );
if ( false !== $old_id ) {
$comments = get_comments( array(
'post_id' => $old_id,
)
);
if ( ! empty( $comments ) ) {
foreach ( $comments as $comment ) {
wp_update_comment( array(
'comment_post_ID' => $current_id,
'comment_ID' => $comment->comment_ID,
) );
}
}
}
}
return $current_id;
}
/**
* This is the action that runs the comment connection
*
* @uses cb_get_object_id()
* @uses cb_action_connect_comments()
* @param $id string
* @return void
*/
add_action('pmxi_saved_post', 'cb_action_connect_comments', 10, 1);
function cb_action_connect_comments( $id ) {
cb_connect_comments( $id, '_oldID' );
}
<?php
add_action('pmxi_saved_post', 'save_custom_fields', 10, 1);
function save_custom_fields($id) {
global $wpdb;
$values = get_post_meta($id,'genders',true);
if(false !== $values){
$values = explode('|',$values);
if(!is_array($values)){
$values = array($values);
}
foreach($values as $value){
$wpdb->query("INSERT INTO `{$wpdb->postmeta}` (`post_id`, `meta_key`, `meta_value`) VALUES ({$id}, 'gender', '{$value}')");
}
}
}
<?php
add_action('pmxi_update_post_meta', 'subcription_import_update_post_meta', 10, 3);
function subcription_import_update_post_meta($pid, $m_key, $m_value) {
if ( $m_key == '_order_items') {
$item_id = wc_add_order_item( $pid, array(
'order_item_name' => $m_value,
'order_item_type' => 'line_item'
) );
if($item_id){
wc_add_order_item_meta($item_id, '_qty', '1');
wc_add_order_item_meta($item_id, '_tax_class', '');
wc_add_order_item_meta($item_id, '_product_id', '7360');
wc_add_order_item_meta($item_id, '_variation_id', '');
wc_add_order_item_meta($item_id, '_line_subtotal', '2475');
wc_add_order_item_meta($item_id, '_line_subtotal_tax', '0');
wc_add_order_item_meta($item_id, '_line_total', '2475');
wc_add_order_item_meta($item_id, '_line_tax', '0');
wc_add_order_item_meta($item_id, '_line_tax_data', 'a:2:{s:5:"total";a:0:{}s:8:"subtotal";a:0:{}}');
}
}
}
add_action('pmxi_saved_post', 'subcription_import_post_saved', 10, 1);
function subcription_import_post_saved($id) {
wc_schedule_single_action( strtotime("+1 hour 5 Minutes"), 'woocommerce_scheduled_subscription_payment', array('subscription_id' => $id) );
}
add_action('pmxi_saved_post', 'cb_wcs_create_subscription_from_csv', 10, 1);
function cb_wcs_create_subscription_from_csv( $id ){
//if ( false === get_post_meta( $id, '_subscription_created', true ) ) {
$order = new WC_Order( $id );
$date_obj = $order->get_date_created();
$date = $date_obj->date( "Y-m-d H:i:s");
$date_obj->modify( '+1 year' );
$end_date = $date_obj->date( "Y-m-d H:i:s");
$args = array(
'status' => 'active',
'order_id' => $id,
'customer_note' => null,
'customer_id' => ( ! empty( $order ) ) ? $order->get_user_id() : null,
'start_date' => $date,
'created_via' => 'checkout',
'prices_include_tax' => ( ! empty( $order ) ) ? ( ( wcs_get_objects_property( $order, 'prices_include_tax' ) ) ? 'yes' : 'no' ) : get_option( 'woocommerce_prices_include_tax' ),
'billing_period' => 'year',
'billing_interval' => '1'
// we don't use wc_prices_include_tax() here because WC doesn't use it in wc_create_order(), not 100% sure why it doesn't also check the taxes are enabled, but there could forseeably be a reason
);
$subscription_ID = wcs_create_subscription( $args );
if ( ! is_wp_error( $subscription_ID ) ) {
update_post_meta( $id, '_subscription_created', $subscription_ID->get_id(), true );
$order_items = $order->get_items();
if ( ! empty( $order_items ) && false !== $subscription_ID ) {
foreach ( $order_items as $line_item ) {
$product = wc_get_product( $line_item->get_product_id() );
$new_item = array(
'name' => $product->get_name(),
'tax_class' => $line_item->get_tax_class(),
'product_id' => $line_item->get_product_id(),
'subtotal' => $line_item->get_subtotal(),
'total' => $line_item->get_total(),
'quantity' => $line_item->get_quantity(),
);
$subscription_ID->add_product( $product, 1, $new_item );
add_post_meta( $id, '_order_item', print_r( $new_item, true ), false );
}
}
$subscription_ID->set_billing_address_1( $order->get_billing_address_1() );
$subscription_ID->set_billing_address_2( $order->get_billing_address_2() );
$subscription_ID->set_billing_city( $order->get_billing_city() );
$subscription_ID->set_billing_company( $order->get_billing_company() );
$subscription_ID->set_billing_country( $order->get_billing_country() );
$subscription_ID->set_billing_email( $order->get_billing_email() );
$subscription_ID->set_billing_first_name( $order->get_billing_first_name() );
$subscription_ID->set_billing_last_name( $order->get_billing_last_name() );
$subscription_ID->set_billing_phone( $order->get_billing_phone() );
$subscription_ID->set_billing_postcode( $order->get_billing_postcode() );
$subscription_ID->set_billing_state( $order->get_billing_state() );
add_post_meta( $subscription_ID->get_id(), '_schedule_end', $end_date, true );
$subscription_ID->calculate_totals();
}
//}
}
<input type="hidden" id="_wpnonce" name="_wpnonce" value="c563c552ca" /><input type="hidden" name="_wp_http_referer" value="/wp-admin/admin.php?page=pmxi-admin-settings" /><div id="cfmtmpl_license_nag" data-key="cfmtmpl_license_nag" class="error notice is-dismissible"><p>To activate your Mail Templates For Caldera Forms license, you must install CalderaWP License Manager. <a href="https://lsdev.feedmybeta.com/wp-admin/update.php?action=install-plugin&amp;plugin=calderawp-license-manager&amp;_wpnonce=2a68c805e4">Install Now</a><input type="hidden" id="_wpnonce" name="_wpnonce" value="c563c552ca" /><input type="hidden" name="_wp_http_referer" value="/wp-admin/admin.php?page=pmxi-admin-settings" /></p></div><input type="hidden" id="_wpnonce" name="_wpnonce" value="c563c552ca" /><input type="hidden" name="_wp_http_referer" value="/wp-admin/admin.php?page=pmxi-admin-settings" /><div id="cf_mailchimp_license_key_nag" data-key="cf_mailchimp_license_key_nag" class="error notice is-dismissible"><p>To activate your Caldera Forms MailChimp Add-On license, you must install CalderaWP License Manager. <a href="https://lsdev.feedmybeta.com/wp-admin/update.php?action=install-plugin&amp;plugin=calderawp-license-manager&amp;_wpnonce=2a68c805e4">Install Now</a><input type="hidden" id="_wpnonce" name="_wpnonce" value="c563c552ca" /><input type="hidden" name="_wp_http_referer" value="/wp-admin/admin.php?page=pmxi-admin-settings" /></p></div>[{"id":"2","options":"a:386:{s:4:\"type\";s:4:\"post\";s:21:\"is_override_post_type\";i:0;s:15:\"post_type_xpath\";s:0:\"\";s:8:\"deligate\";s:0:\"\";s:11:\"wizard_type\";s:8:\"matching\";s:11:\"custom_type\";s:12:\"import_users\";s:14:\"featured_delim\";s:1:\",\";s:10:\"atch_delim\";s:1:\",\";s:25:\"is_search_existing_attach\";i:0;s:15:\"post_taxonomies\";a:0:{}s:6:\"parent\";i:0;s:23:\"is_multiple_page_parent\";s:3:\"yes\";s:18:\"single_page_parent\";s:0:\"\";s:5:\"order\";i:0;s:6:\"status\";s:7:\"publish\";s:13:\"page_template\";s:7:\"default\";s:25:\"is_multiple_page_template\";s:3:\"yes\";s:20:\"single_page_template\";s:0:\"\";s:15:\"page_taxonomies\";a:0:{}s:9:\"date_type\";s:8:\"specific\";s:4:\"date\";s:3:\"now\";s:10:\"date_start\";s:3:\"now\";s:8:\"date_end\";s:3:\"now\";s:11:\"custom_name\";a:20:{i:0;s:18:\"billing_first_name\";i:1;s:17:\"billing_last_name\";i:2;s:15:\"billing_company\";i:3;s:17:\"billing_address_1\";i:4;s:17:\"billing_address_2\";i:5;s:12:\"billing_city\";i:6;s:13:\"billing_state\";i:7;s:16:\"billing_postcode\";i:8;s:15:\"billing_country\";i:9;s:13:\"billing_email\";i:10;s:13:\"billing_phone\";i:11;s:19:\"shipping_first_name\";i:12;s:18:\"shipping_last_name\";i:13;s:16:\"shipping_company\";i:14;s:18:\"shipping_address_1\";i:15;s:18:\"shipping_address_2\";i:16;s:13:\"shipping_city\";i:17;s:14:\"shipping_state\";i:18;s:17:\"shipping_postcode\";i:19;s:16:\"shipping_country\";}s:12:\"custom_value\";a:20:{i:0;s:23:\"{billing_first_name[1]}\";i:1;s:22:\"{billing_last_name[1]}\";i:2;s:20:\"{billing_company[1]}\";i:3;s:22:\"{billing_address_1[1]}\";i:4;s:22:\"{billing_address_2[1]}\";i:5;s:17:\"{billing_city[1]}\";i:6;s:18:\"{billing_state[1]}\";i:7;s:21:\"{billing_postcode[1]}\";i:8;s:20:\"{billing_country[1]}\";i:9;s:18:\"{billing_email[1]}\";i:10;s:18:\"{billing_phone[1]}\";i:11;s:24:\"{shipping_first_name[1]}\";i:12;s:23:\"{shipping_last_name[1]}\";i:13;s:21:\"{shipping_company[1]}\";i:14;s:23:\"{shipping_address_1[1]}\";i:15;s:23:\"{shipping_address_2[1]}\";i:16;s:18:\"{shipping_city[1]}\";i:17;s:19:\"{shipping_state[1]}\";i:18;s:22:\"{shipping_postcode[1]}\";i:19;s:21:\"{shipping_country[1]}\";}s:13:\"custom_format\";a:21:{i:0;s:1:\"0\";i:1;s:1:\"0\";i:2;s:1:\"0\";i:3;s:1:\"0\";i:4;s:1:\"0\";i:5;s:1:\"0\";i:6;s:1:\"0\";i:7;s:1:\"0\";i:8;s:1:\"0\";i:9;s:1:\"0\";i:10;s:1:\"0\";i:11;s:1:\"0\";i:12;s:1:\"0\";i:13;s:1:\"0\";i:14;s:1:\"0\";i:15;s:1:\"0\";i:16;s:1:\"0\";i:17;s:1:\"0\";i:18;s:1:\"0\";i:19;s:1:\"0\";i:20;s:1:\"0\";}s:14:\"custom_mapping\";a:0:{}s:17:\"serialized_values\";a:21:{i:0;s:7:\"[\"\",\"\"]\";i:1;s:7:\"[\"\",\"\"]\";i:2;s:7:\"[\"\",\"\"]\";i:3;s:7:\"[\"\",\"\"]\";i:4;s:7:\"[\"\",\"\"]\";i:5;s:7:\"[\"\",\"\"]\";i:6;s:7:\"[\"\",\"\"]\";i:7;s:7:\"[\"\",\"\"]\";i:8;s:7:\"[\"\",\"\"]\";i:9;s:7:\"[\"\",\"\"]\";i:10;s:7:\"[\"\",\"\"]\";i:11;s:7:\"[\"\",\"\"]\";i:12;s:7:\"[\"\",\"\"]\";i:13;s:7:\"[\"\",\"\"]\";i:14;s:7:\"[\"\",\"\"]\";i:15;s:7:\"[\"\",\"\"]\";i:16;s:7:\"[\"\",\"\"]\";i:17;s:7:\"[\"\",\"\"]\";i:18;s:7:\"[\"\",\"\"]\";i:19;s:7:\"[\"\",\"\"]\";i:20;s:7:\"[\"\",\"\"]\";}s:20:\"custom_mapping_rules\";a:21:{i:0;s:2:\"[]\";i:1;s:2:\"[]\";i:2;s:2:\"[]\";i:3;s:2:\"[]\";i:4;s:2:\"[]\";i:5;s:2:\"[]\";i:6;s:2:\"[]\";i:7;s:2:\"[]\";i:8;s:2:\"[]\";i:9;s:2:\"[]\";i:10;s:2:\"[]\";i:11;s:2:\"[]\";i:12;s:2:\"[]\";i:13;s:2:\"[]\";i:14;s:2:\"[]\";i:15;s:2:\"[]\";i:16;s:2:\"[]\";i:17;s:2:\"[]\";i:18;s:2:\"[]\";i:19;s:2:\"[]\";i:20;s:2:\"[]\";}s:14:\"comment_status\";s:4:\"open\";s:20:\"comment_status_xpath\";s:0:\"\";s:11:\"ping_status\";s:4:\"open\";s:17:\"ping_status_xpath\";s:0:\"\";s:12:\"create_draft\";s:2:\"no\";s:6:\"author\";s:0:\"\";s:12:\"post_excerpt\";s:0:\"\";s:9:\"post_slug\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:19:\"is_import_specified\";s:1:\"0\";s:16:\"import_specified\";s:0:\"\";s:16:\"is_delete_source\";i:0;s:8:\"is_cloak\";i:0;s:10:\"unique_key\";s:4:\"user\";s:14:\"tmp_unique_key\";s:0:\"\";s:9:\"feed_type\";s:4:\"auto\";s:22:\"search_existing_images\";i:1;s:18:\"create_new_records\";s:1:\"1\";s:17:\"is_delete_missing\";s:1:\"0\";s:20:\"set_missing_to_draft\";i:0;s:20:\"is_update_missing_cf\";s:1:\"0\";s:22:\"update_missing_cf_name\";s:0:\"\";s:23:\"update_missing_cf_value\";s:0:\"\";s:20:\"is_keep_former_posts\";s:2:\"no\";s:16:\"is_update_status\";i:1;s:17:\"is_update_content\";i:1;s:15:\"is_update_title\";i:1;s:14:\"is_update_slug\";i:1;s:17:\"is_update_excerpt\";i:1;s:20:\"is_update_categories\";i:1;s:16:\"is_update_author\";i:1;s:24:\"is_update_comment_status\";i:1;s:19:\"is_update_post_type\";i:1;s:23:\"update_categories_logic\";s:11:\"full_update\";s:15:\"taxonomies_list\";a:0:{}s:20:\"taxonomies_only_list\";a:0:{}s:22:\"taxonomies_except_list\";a:0:{}s:21:\"is_update_attachments\";i:1;s:16:\"is_update_images\";i:1;s:19:\"update_images_logic\";s:11:\"full_update\";s:15:\"is_update_dates\";i:1;s:20:\"is_update_menu_order\";i:1;s:16:\"is_update_parent\";i:1;s:19:\"is_keep_attachments\";i:0;s:12:\"is_keep_imgs\";i:0;s:20:\"do_not_remove_images\";i:1;s:23:\"is_update_custom_fields\";s:1:\"1\";s:26:\"update_custom_fields_logic\";s:11:\"full_update\";s:18:\"custom_fields_list\";s:1:\"0\";s:23:\"custom_fields_only_list\";s:0:\"\";s:25:\"custom_fields_except_list\";s:0:\"\";s:18:\"duplicate_matching\";s:6:\"manual\";s:19:\"duplicate_indicator\";s:5:\"title\";s:21:\"custom_duplicate_name\";s:0:\"\";s:22:\"custom_duplicate_value\";s:0:\"\";s:18:\"is_update_previous\";i:0;s:12:\"is_scheduled\";s:0:\"\";s:16:\"scheduled_period\";s:0:\"\";s:13:\"friendly_name\";s:0:\"\";s:19:\"records_per_request\";s:2:\"20\";s:24:\"auto_records_per_request\";i:1;s:18:\"auto_rename_images\";i:0;s:25:\"auto_rename_images_suffix\";s:0:\"\";s:11:\"images_name\";s:8:\"filename\";s:11:\"post_format\";s:8:\"standard\";s:17:\"post_format_xpath\";s:0:\"\";s:8:\"encoding\";s:5:\"UTF-8\";s:9:\"delimiter\";s:1:\",\";s:16:\"image_meta_title\";s:0:\"\";s:22:\"image_meta_title_delim\";s:1:\",\";s:18:\"image_meta_caption\";s:0:\"\";s:24:\"image_meta_caption_delim\";s:1:\",\";s:14:\"image_meta_alt\";s:0:\"\";s:20:\"image_meta_alt_delim\";s:1:\",\";s:22:\"image_meta_description\";s:0:\"\";s:28:\"image_meta_description_delim\";s:1:\",\";s:34:\"image_meta_description_delim_logic\";s:8:\"separate\";s:12:\"status_xpath\";s:0:\"\";s:15:\"download_images\";s:3:\"yes\";s:17:\"converted_options\";s:1:\"1\";s:15:\"update_all_data\";s:3:\"yes\";s:12:\"is_fast_mode\";s:1:\"0\";s:9:\"chuncking\";s:1:\"1\";s:17:\"import_processing\";s:4:\"ajax\";s:26:\"processing_iteration_logic\";s:4:\"auto\";s:28:\"records_per_request_detected\";i:0;s:16:\"save_template_as\";s:1:\"1\";s:5:\"title\";s:4:\"user\";s:7:\"content\";s:4:\"user\";s:4:\"name\";s:27:\"WooCommerce Customer Import\";s:18:\"is_keep_linebreaks\";i:1;s:13:\"is_leave_html\";i:0;s:14:\"fix_characters\";i:0;s:9:\"pid_xpath\";s:0:\"\";s:10:\"slug_xpath\";s:0:\"\";s:11:\"title_xpath\";s:0:\"\";s:14:\"featured_image\";s:0:\"\";s:23:\"download_featured_image\";s:0:\"\";s:23:\"download_featured_delim\";s:1:\",\";s:22:\"gallery_featured_image\";s:0:\"\";s:22:\"gallery_featured_delim\";s:1:\",\";s:11:\"is_featured\";i:1;s:20:\"set_image_meta_title\";i:0;s:22:\"set_image_meta_caption\";i:0;s:18:\"set_image_meta_alt\";i:0;s:26:\"set_image_meta_description\";i:0;s:18:\"auto_set_extension\";i:0;s:13:\"new_extension\";s:0:\"\";s:9:\"tax_logic\";a:0:{}s:10:\"tax_assing\";a:0:{}s:11:\"term_assing\";a:0:{}s:20:\"multiple_term_assing\";a:0:{}s:23:\"tax_hierarchical_assing\";a:0:{}s:34:\"tax_hierarchical_last_level_assign\";a:0:{}s:16:\"tax_single_xpath\";a:0:{}s:18:\"tax_multiple_xpath\";a:0:{}s:22:\"tax_hierarchical_xpath\";a:0:{}s:18:\"tax_multiple_delim\";a:0:{}s:22:\"tax_hierarchical_delim\";a:0:{}s:25:\"tax_manualhierarchy_delim\";a:0:{}s:29:\"tax_hierarchical_logic_entire\";a:0:{}s:29:\"tax_hierarchical_logic_manual\";a:0:{}s:18:\"tax_enable_mapping\";a:0:{}s:25:\"tax_is_full_search_single\";a:0:{}s:27:\"tax_is_full_search_multiple\";a:0:{}s:29:\"tax_assign_to_one_term_single\";a:0:{}s:31:\"tax_assign_to_one_term_multiple\";a:0:{}s:11:\"tax_mapping\";a:0:{}s:17:\"tax_logic_mapping\";a:0:{}s:31:\"is_tax_hierarchical_group_delim\";a:0:{}s:28:\"tax_hierarchical_group_delim\";a:0:{}s:12:\"nested_files\";a:0:{}s:17:\"xml_reader_engine\";s:1:\"0\";s:13:\"taxonomy_type\";s:0:\"\";s:15:\"taxonomy_parent\";s:0:\"\";s:13:\"taxonomy_slug\";s:4:\"auto\";s:19:\"taxonomy_slug_xpath\";s:0:\"\";s:15:\"import_img_tags\";i:1;s:24:\"is_multiple_product_type\";s:3:\"yes\";s:21:\"multiple_product_type\";s:6:\"simple\";s:19:\"single_product_type\";s:0:\"\";s:18:\"is_product_virtual\";s:2:\"no\";s:22:\"single_product_virtual\";s:0:\"\";s:23:\"is_product_downloadable\";s:2:\"no\";s:27:\"single_product_downloadable\";s:0:\"\";s:18:\"is_product_enabled\";s:3:\"yes\";s:22:\"single_product_enabled\";s:0:\"\";s:20:\"is_variation_enabled\";s:3:\"yes\";s:24:\"single_variation_enabled\";s:0:\"\";s:19:\"is_product_featured\";s:2:\"no\";s:23:\"single_product_featured\";s:0:\"\";s:21:\"is_product_visibility\";s:7:\"visible\";s:25:\"single_product_visibility\";s:0:\"\";s:18:\"single_product_sku\";s:0:\"\";s:18:\"single_product_url\";s:0:\"\";s:26:\"single_product_button_text\";s:0:\"\";s:28:\"single_product_regular_price\";s:0:\"\";s:25:\"single_product_sale_price\";s:0:\"\";s:20:\"single_product_files\";s:0:\"\";s:26:\"single_product_files_names\";s:0:\"\";s:29:\"single_product_download_limit\";s:0:\"\";s:30:\"single_product_download_expiry\";s:0:\"\";s:28:\"single_product_download_type\";s:0:\"\";s:30:\"is_multiple_product_tax_status\";s:3:\"yes\";s:27:\"multiple_product_tax_status\";s:4:\"none\";s:25:\"single_product_tax_status\";s:0:\"\";s:29:\"is_multiple_product_tax_class\";s:3:\"yes\";s:26:\"multiple_product_tax_class\";s:0:\"\";s:24:\"single_product_tax_class\";s:0:\"\";s:23:\"is_product_manage_stock\";s:2:\"no\";s:27:\"single_product_manage_stock\";s:0:\"\";s:24:\"single_product_stock_qty\";s:0:\"\";s:20:\"product_stock_status\";s:4:\"auto\";s:27:\"single_product_stock_status\";s:0:\"\";s:24:\"product_allow_backorders\";s:2:\"no\";s:31:\"single_product_allow_backorders\";s:0:\"\";s:25:\"product_sold_individually\";s:2:\"no\";s:32:\"single_product_sold_individually\";s:0:\"\";s:21:\"single_product_weight\";s:0:\"\";s:21:\"single_product_length\";s:0:\"\";s:20:\"single_product_width\";s:0:\"\";s:21:\"single_product_height\";s:0:\"\";s:34:\"is_multiple_product_shipping_class\";s:3:\"yes\";s:31:\"multiple_product_shipping_class\";s:0:\"\";s:29:\"single_product_shipping_class\";s:0:\"\";s:28:\"is_multiple_grouping_product\";s:3:\"yes\";s:25:\"multiple_grouping_product\";s:0:\"\";s:23:\"single_grouping_product\";s:0:\"\";s:23:\"single_product_up_sells\";s:0:\"\";s:26:\"single_product_cross_sells\";s:0:\"\";s:14:\"attribute_name\";a:0:{}s:15:\"attribute_value\";a:0:{}s:13:\"in_variations\";a:0:{}s:10:\"is_visible\";a:0:{}s:11:\"is_taxonomy\";a:0:{}s:29:\"create_taxonomy_in_not_exists\";a:0:{}s:11:\"is_advanced\";a:0:{}s:22:\"advanced_in_variations\";a:0:{}s:28:\"advanced_in_variations_xpath\";a:0:{}s:19:\"advanced_is_visible\";a:0:{}s:25:\"advanced_is_visible_xpath\";a:0:{}s:20:\"advanced_is_taxonomy\";a:0:{}s:26:\"advanced_is_taxonomy_xpath\";a:0:{}s:24:\"advanced_is_create_terms\";a:0:{}s:30:\"advanced_is_create_terms_xpath\";a:0:{}s:28:\"single_product_purchase_note\";s:0:\"\";s:25:\"single_product_menu_order\";i:0;s:25:\"is_product_enable_reviews\";s:2:\"no\";s:29:\"single_product_enable_reviews\";s:0:\"\";s:17:\"single_product_id\";s:0:\"\";s:24:\"single_product_parent_id\";s:0:\"\";s:36:\"single_product_id_first_is_parent_id\";s:0:\"\";s:44:\"single_product_first_is_parent_id_parent_sku\";s:0:\"\";s:39:\"single_product_id_first_is_parent_title\";s:0:\"\";s:47:\"single_product_first_is_parent_title_parent_sku\";s:0:\"\";s:36:\"single_product_id_first_is_variation\";s:0:\"\";s:8:\"_virtual\";i:0;s:13:\"_downloadable\";i:0;s:24:\"is_regular_price_shedule\";i:0;s:28:\"single_sale_price_dates_from\";s:3:\"now\";s:26:\"single_sale_price_dates_to\";s:3:\"now\";s:19:\"product_files_delim\";s:1:\",\";s:25:\"product_files_names_delim\";s:1:\",\";s:15:\"matching_parent\";s:4:\"auto\";s:16:\"parent_indicator\";s:12:\"custom field\";s:28:\"custom_parent_indicator_name\";s:0:\"\";s:29:\"custom_parent_indicator_value\";s:0:\"\";s:28:\"missing_records_stock_status\";i:0;s:16:\"variations_xpath\";s:0:\"\";s:17:\"_variable_virtual\";s:0:\"\";s:22:\"_variable_downloadable\";s:0:\"\";s:14:\"variable_stock\";s:0:\"\";s:22:\"variable_regular_price\";s:0:\"\";s:19:\"variable_sale_price\";s:0:\"\";s:30:\"is_variable_sale_price_shedule\";i:0;s:30:\"variable_sale_price_dates_from\";s:0:\"\";s:28:\"variable_sale_price_dates_to\";s:0:\"\";s:15:\"variable_weight\";s:0:\"\";s:15:\"variable_length\";s:0:\"\";s:14:\"variable_width\";s:0:\"\";s:15:\"variable_height\";s:0:\"\";s:23:\"variable_shipping_class\";s:0:\"\";s:18:\"variable_tax_class\";s:0:\"\";s:19:\"variable_file_paths\";s:0:\"\";s:19:\"variable_file_names\";s:0:\"\";s:23:\"variable_download_limit\";s:0:\"\";s:24:\"variable_download_expiry\";s:0:\"\";s:27:\"is_variable_product_virtual\";s:2:\"no\";s:32:\"is_variable_product_manage_stock\";s:2:\"no\";s:43:\"is_multiple_variable_product_shipping_class\";s:3:\"yes\";s:40:\"multiple_variable_product_shipping_class\";s:0:\"\";s:38:\"single_variable_product_shipping_class\";s:0:\"\";s:38:\"is_multiple_variable_product_tax_class\";s:3:\"yes\";s:35:\"multiple_variable_product_tax_class\";s:6:\"parent\";s:33:\"single_variable_product_tax_class\";s:0:\"\";s:21:\"variable_stock_status\";s:7:\"instock\";s:28:\"single_variable_stock_status\";s:0:\"\";s:25:\"variable_allow_backorders\";s:2:\"no\";s:32:\"single_variable_allow_backorders\";s:0:\"\";s:32:\"is_variable_product_downloadable\";s:2:\"no\";s:36:\"single_variable_product_downloadable\";s:0:\"\";s:23:\"variable_attribute_name\";a:0:{}s:24:\"variable_attribute_value\";a:0:{}s:22:\"variable_in_variations\";a:0:{}s:19:\"variable_is_visible\";a:0:{}s:20:\"variable_is_taxonomy\";a:0:{}s:38:\"variable_create_taxonomy_in_not_exists\";a:0:{}s:28:\"variable_product_files_delim\";s:1:\",\";s:34:\"variable_product_files_names_delim\";s:1:\",\";s:14:\"variable_image\";s:0:\"\";s:12:\"variable_sku\";s:0:\"\";s:27:\"is_variable_product_enabled\";s:3:\"yes\";s:31:\"single_variable_product_enabled\";s:0:\"\";s:19:\"link_all_variations\";i:0;s:25:\"variable_stock_use_parent\";i:0;s:33:\"variable_regular_price_use_parent\";i:0;s:30:\"variable_sale_price_use_parent\";i:0;s:30:\"variable_sale_dates_use_parent\";i:0;s:26:\"variable_weight_use_parent\";i:0;s:31:\"single_variable_product_virtual\";s:0:\"\";s:42:\"single_variable_product_virtual_use_parent\";i:0;s:36:\"single_variable_product_manage_stock\";s:0:\"\";s:47:\"single_variable_product_manage_stock_use_parent\";i:0;s:30:\"variable_dimensions_use_parent\";i:0;s:25:\"variable_image_use_parent\";i:0;s:49:\"single_variable_product_shipping_class_use_parent\";i:0;s:44:\"single_variable_product_tax_class_use_parent\";i:0;s:47:\"single_variable_product_downloadable_use_parent\";i:0;s:34:\"variable_download_limit_use_parent\";i:0;s:35:\"variable_download_expiry_use_parent\";i:0;s:36:\"single_product_variation_description\";s:0:\"\";s:20:\"variable_description\";s:0:\"\";s:31:\"variable_description_use_parent\";i:0;s:15:\"first_is_parent\";s:3:\"yes\";s:28:\"single_product_whosale_price\";s:0:\"\";s:22:\"variable_whosale_price\";s:0:\"\";s:33:\"variable_whosale_price_use_parent\";i:0;s:27:\"disable_auto_sku_generation\";i:0;s:21:\"is_default_attributes\";i:0;s:23:\"default_attributes_type\";s:5:\"first\";s:20:\"disable_sku_matching\";i:1;s:21:\"disable_prepare_price\";i:1;s:27:\"prepare_price_to_woo_format\";i:0;s:25:\"convert_decimal_separator\";i:1;s:18:\"grouping_indicator\";s:5:\"xpath\";s:30:\"custom_grouping_indicator_name\";s:0:\"\";s:31:\"custom_grouping_indicator_value\";s:0:\"\";s:22:\"is_update_product_type\";i:1;s:19:\"make_simple_product\";i:1;s:23:\"variable_sku_add_parent\";i:0;s:16:\"set_parent_stock\";i:0;s:35:\"single_product_regular_price_adjust\";s:0:\"\";s:40:\"single_product_regular_price_adjust_type\";s:1:\"%\";s:32:\"single_product_sale_price_adjust\";s:0:\"\";s:37:\"single_product_sale_price_adjust_type\";s:1:\"%\";s:20:\"is_update_attributes\";i:1;s:23:\"update_attributes_logic\";s:11:\"full_update\";s:15:\"attributes_list\";a:0:{}s:20:\"attributes_only_list\";a:0:{}s:22:\"attributes_except_list\";a:0:{}s:33:\"is_variation_product_manage_stock\";s:2:\"no\";s:37:\"single_variation_product_manage_stock\";s:0:\"\";s:15:\"variation_stock\";s:0:\"\";s:22:\"variation_stock_status\";s:4:\"auto\";s:30:\"put_variation_image_to_gallery\";i:0;s:29:\"single_variation_stock_status\";s:0:\"\";s:10:\"pmwi_order\";a:88:{s:6:\"status\";s:10:\"wc-pending\";s:12:\"status_xpath\";s:0:\"\";s:4:\"date\";s:3:\"now\";s:14:\"billing_source\";s:8:\"existing\";s:23:\"billing_source_match_by\";s:8:\"username\";s:23:\"billing_source_username\";s:0:\"\";s:20:\"billing_source_email\";s:0:\"\";s:17:\"billing_source_id\";s:0:\"\";s:22:\"billing_source_cf_name\";s:0:\"\";s:23:\"billing_source_cf_value\";s:0:\"\";s:18:\"billing_first_name\";s:0:\"\";s:17:\"billing_last_name\";s:0:\"\";s:15:\"billing_company\";s:0:\"\";s:17:\"billing_address_1\";s:0:\"\";s:17:\"billing_address_2\";s:0:\"\";s:12:\"billing_city\";s:0:\"\";s:16:\"billing_postcode\";s:0:\"\";s:15:\"billing_country\";s:0:\"\";s:13:\"billing_state\";s:0:\"\";s:13:\"billing_email\";s:0:\"\";s:13:\"billing_phone\";s:0:\"\";s:24:\"guest_billing_first_name\";s:0:\"\";s:23:\"guest_billing_last_name\";s:0:\"\";s:21:\"guest_billing_company\";s:0:\"\";s:23:\"guest_billing_address_1\";s:0:\"\";s:23:\"guest_billing_address_2\";s:0:\"\";s:18:\"guest_billing_city\";s:0:\"\";s:22:\"guest_billing_postcode\";s:0:\"\";s:21:\"guest_billing_country\";s:0:\"\";s:19:\"guest_billing_state\";s:0:\"\";s:19:\"guest_billing_email\";s:0:\"\";s:19:\"guest_billing_phone\";s:0:\"\";s:17:\"is_guest_matching\";i:0;s:15:\"shipping_source\";s:4:\"copy\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:17:\"shipping_postcode\";s:0:\"\";s:16:\"shipping_country\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:14:\"shipping_email\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";s:17:\"copy_from_billing\";i:0;s:22:\"customer_provided_note\";s:0:\"\";s:14:\"payment_method\";s:0:\"\";s:20:\"payment_method_xpath\";s:0:\"\";s:14:\"transaction_id\";s:0:\"\";s:22:\"products_repeater_mode\";s:3:\"csv\";s:32:\"products_repeater_mode_separator\";s:1:\"|\";s:30:\"products_repeater_mode_foreach\";s:0:\"\";s:15:\"products_source\";s:8:\"existing\";s:8:\"products\";a:0:{}s:15:\"manual_products\";a:0:{}s:18:\"fees_repeater_mode\";s:3:\"csv\";s:28:\"fees_repeater_mode_separator\";s:1:\"|\";s:26:\"fees_repeater_mode_foreach\";s:0:\"\";s:4:\"fees\";a:0:{}s:21:\"coupons_repeater_mode\";s:3:\"csv\";s:31:\"coupons_repeater_mode_separator\";s:1:\"|\";s:29:\"coupons_repeater_mode_foreach\";s:0:\"\";s:7:\"coupons\";a:0:{}s:22:\"shipping_repeater_mode\";s:3:\"csv\";s:32:\"shipping_repeater_mode_separator\";s:1:\"|\";s:30:\"shipping_repeater_mode_foreach\";s:0:\"\";s:8:\"shipping\";a:0:{}s:19:\"taxes_repeater_mode\";s:3:\"csv\";s:29:\"taxes_repeater_mode_separator\";s:1:\"|\";s:27:\"taxes_repeater_mode_foreach\";s:0:\"\";s:5:\"taxes\";a:0:{}s:17:\"order_total_logic\";s:4:\"auto\";s:17:\"order_total_xpath\";s:0:\"\";s:19:\"order_refund_amount\";s:0:\"\";s:19:\"order_refund_reason\";s:0:\"\";s:17:\"order_refund_date\";s:3:\"now\";s:26:\"order_refund_issued_source\";s:8:\"existing\";s:28:\"order_refund_issued_match_by\";s:8:\"username\";s:28:\"order_refund_issued_username\";s:0:\"\";s:25:\"order_refund_issued_email\";s:0:\"\";s:27:\"order_refund_issued_cf_name\";s:0:\"\";s:28:\"order_refund_issued_cf_value\";s:0:\"\";s:22:\"order_refund_issued_id\";s:0:\"\";s:19:\"notes_repeater_mode\";s:3:\"csv\";s:29:\"notes_repeater_mode_separator\";s:1:\"|\";s:27:\"notes_repeater_mode_foreach\";s:0:\"\";s:5:\"notes\";a:0:{}}s:25:\"is_update_billing_details\";i:1;s:26:\"is_update_shipping_details\";i:1;s:17:\"is_update_payment\";i:1;s:15:\"is_update_notes\";i:1;s:18:\"is_update_products\";i:1;s:21:\"update_products_logic\";s:11:\"full_update\";s:14:\"is_update_fees\";i:1;s:17:\"is_update_coupons\";i:1;s:18:\"is_update_shipping\";i:1;s:15:\"is_update_taxes\";i:1;s:17:\"is_update_refunds\";i:1;s:15:\"is_update_total\";i:1;s:31:\"do_not_send_order_notifications\";i:1;s:26:\"is_update_advanced_options\";i:1;s:28:\"is_update_catalog_visibility\";i:1;s:25:\"is_update_featured_status\";i:1;s:4:\"pmui\";a:13:{s:12:\"import_users\";s:1:\"1\";s:10:\"first_name\";s:23:\"{billing_first_name[1]}\";s:9:\"last_name\";s:22:\"{billing_last_name[1]}\";s:4:\"role\";s:8:\"customer\";s:8:\"nickname\";s:46:\"{billing_first_name[1]} {billing_last_name[1]}\";s:11:\"description\";s:0:\"\";s:5:\"login\";s:13:\"{username[1]}\";s:4:\"pass\";s:13:\"{password[1]}\";s:8:\"nicename\";s:0:\"\";s:5:\"email\";s:10:\"{email[1]}\";s:10:\"registered\";s:20:\"{date_registered[1]}\";s:12:\"display_name\";s:46:\"{billing_first_name[1]} {billing_last_name[1]}\";s:3:\"url\";s:0:\"\";}s:20:\"is_update_first_name\";s:1:\"1\";s:19:\"is_update_last_name\";s:1:\"1\";s:14:\"is_update_role\";s:1:\"1\";s:18:\"is_update_nickname\";s:1:\"1\";s:21:\"is_update_description\";s:1:\"1\";s:15:\"is_update_login\";s:1:\"1\";s:18:\"is_update_password\";s:1:\"1\";s:18:\"is_update_nicename\";s:1:\"1\";s:15:\"is_update_email\";s:1:\"1\";s:20:\"is_update_registered\";s:1:\"1\";s:22:\"is_update_display_name\";s:1:\"1\";s:13:\"is_update_url\";s:1:\"1\";s:33:\"do_not_send_password_notification\";s:1:\"1\";}","scheduled":"","name":"WooCommerce Customer Import","title":"N;","content":"N;","is_keep_linebreaks":"1","is_leave_html":"0","fix_characters":"0","meta":"N;"}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment