/
var
/
www
/
html
/
plugin-techloyce
/
Modules
/
Webstores
/
Meta
/
Upload File
HOME
<?php // Shopify to SubscriptionFlow // Source: Shopify // Destination: SubscriptionFlow return [ 0 => [ 'sourceModule' => 'Products', 'destinationModule' => 'Products', 'fieldsMapping' => [ //shopify => SubscriptionFlow 'id' => 'id', 'title' => 'name', 'body_html' => 'description', 'product_type' => 'type', 'created_at' => 'created_at' ], ], 1 => [ 'sourceModule' => 'Products[variant]', 'destinationModule' => 'Plans', 'fieldsMapping' => [ //shopify => SubscriptionFlow 'id' => 'id', 'title' => 'name', 'product_id' => 'product_id', 'product_type' => 'type' ], ], 2 => [ 'sourceModule' => 'Products[variant]', 'destinationModule' => 'PlanPrices', 'fieldsMapping' => [ //shopify => SubscriptionFlow 'name' => 'name', 'product_id' => 'product_id', 'id' => 'plan_id', 'sku' => 'description', 'price' => 'list_price' ], ], 3 => [ 'sourceModule' => 'Customers', 'destinationModule' => 'Customers', 'fieldsMapping' => [ //shopify => SubscriptionFlow 'id' => 'id', 'first_name,last_name' => 'name', 'email' => 'email', 'created_at' => 'created_at', 'phone' => 'phone', 'note' => 'notes', 'tax_exempt' => 'tax_exempt', 'default_address[address1]' => 'billing_address_1', 'default_address[address2]' => 'billing_address_2', 'default_address[city]' => 'billing_city', 'default_address[province]' => 'billing_county', 'default_address[zip]' => 'billing_postal_code', 'default_address[country_code]' => 'billing_country', ], ], ];