Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

Discrepancy in Customer name in Shopify Store

Discrepancy in Customer name in Shopify Store

cb6
Shopify Partner
6 0 0

My Store name: ankur-staging-new.myshopify.com

 

Step 1 : I created the customer with name 'Shivam Soni' in my store.

Step 2 : I created the first order for the same customer in my store then customer name gets updated with 'Rahul Jain' which is incorrect. 'Rahul jain' is my billing address name.

Step 3: I created the second order and then the customer name gets updated with 'Shivam Soni' which is correct.

 

Ask: Please specify why this discrepancy in the Customer name with respect to order creation in Shopify?

 

Note: Please look for the attached screenshots and files(create customer and order APIs request/response) for the reference.

Replies 4 (4)

Imogen
Shopify Staff (Retired)
2045 227 396

Hi there, @cb6!

 

Thanks for reaching out in the Shopify Community today with your question! 

This is an interesting situation you have here. I just have a few questions I want to ask to see if this is something that I have the degree of experience to assist you with: 

 

  • Are you creating this customer natively within Shopify's backend, or are you using an application to create this customer? 
  • Are you able to provide the screenshots that you put in the zipfolder in a reply not within the zip folder, so I can take a look at them? 
  • Are you working on an application and this issue is coming up while working on things? 

I'll keep my eyes peeled for your reply so I can evaluate what I can do to assist! 

Imogen | Social Care @ Shopify 
 - Was my reply helpful? Click Like to let me know! 
 - Was your question answered? Mark it as an Accepted Solution
 - To learn more visit the Shopify Help Center or the Shopify Blog

cb6
Shopify Partner
6 0 0

Hi Imogen,

 

These are the answers to your questions:

 

  • Are you creating this customer natively within Shopify's backend, or are you using an application to create this customer?  --> I am creating customers within Shopify's backend through Shopify's create customer API. After creating the customer I have created 2 orders through Shopify's create order API. Please refer the all the 3 API request/response;                                                                                                                                            Request 1: Create Customer:
    API: https://ankur-staging-new.myshopify.com/admin/api/2019-04/customers.json
    Request : {"customer":{"email":"shivam@gmail.com","accepts_marketing":"false","first_name":"Shivam","last_name":"Soni"}}
    Response : {
    "customer": {
    "id": 5508244111425,
    "email": "shivam@gmail.com",
    "accepts_marketing": false,
    "created_at": "2022-01-19T14:06:33+05:30",
    "updated_at": "2022-01-19T14:06:33+05:30",
    "first_name": "Shivam",
    "last_name": "Soni",
    "orders_count": 0,
    "state": "disabled",
    "total_spent": "0.00",
    "last_order_id": null,
    "note": null,
    "verified_email": true,
    "multipass_identifier": null,
    "tax_exempt": false,
    "phone": null,
    "tags": "",
    "last_order_name": null,
    "currency": "INR",
    "addresses": [],
    "accepts_marketing_updated_at": "2022-01-19T14:06:33+05:30",
    "marketing_opt_in_level": null,
    "tax_exemptions": [],
    "admin_graphql_api_id": "gid://shopify/Customer/5508244111425"
    }
    }
    Request 2: First Order for above customer:

    API : https://ankur-staging-new.myshopify.com/admin/api/2019-04/orders.json
    Request : {
    "order":{
    "email":"shivam@gmail.com",
    "shipping_address":{
    "first_name":"Rahul",
    "last_name":"Jain",
    "name":"Rahul Jain",
    "address1":"S11",
    "address2":"S22, S33",
    "company":"DFG",
    "phone":"7867564534",
    "city":"Indore",
    "zip":"452001",
    "province":"Madhya Pradesh",
    "country":"IN",
    "country_code":null,
    "province_code":"MP"
    },
    "billing_address":{
    "first_name":"Rahul",
    "last_name":"Jain",
    "name":"Rahul Jain",
    "address1":"S11",
    "address2":"S22, S33",
    "company":"DFG",
    "phone":"7867564534",
    "city":"Indore",
    "zip":"452001",
    "province":"Madhya Pradesh",
    "country":"IN",
    "country_code":null,
    "province_code":"MP"
    },
    "line_items":[
    {
    "variant_id":null,
    "quantity":1,
    "price":"222.00",
    "title":"2-month-plan",
    "taxable":true,
    "tax_lines":null
    }
    ],
    "total_tax":"0.00",
    "total_discounts":"0.00",
    "taxes_included":false,
    "transactions":[
    {
    "amount":"222.00",
    "authorization":null,
    "currency":"USD",
    "test":false,
    "kind":"sale",
    "id":null,
    "status":null,
    "gateway":"CARD",
    "parent_id":null,
    "orderId":null
    }
    ],
    "tags":"ank-local",
    "customer":{
    "id":5508244111425,
    "email":"shivam@gmail.com",
    "accepts_marketing":"false",
    "first_name":"Shivam",
    "last_name":"Soni",
    "tags":"ank-loc"
    },
    "metafields":[
    {
    "id":null,
    "namespace":"chargebee",
    "key":"order_id",
    "value":"301",
    "value_type":"String",
    "description":"Test Order"
    }
    ],
    "currency":"USD",
    "inventory_behaviour":"decrement_obeying_policy"
    }
    }

    Response : {
    "order": {
    "id": 4149357871169,
    "admin_graphql_api_id": "gid://shopify/Order/4149357871169",
    "app_id": 6362413,
    "browser_ip": null,
    "buyer_accepts_marketing": false,
    "cancel_reason": null,
    "cancelled_at": null,
    "cart_token": null,
    "checkout_id": null,
    "checkout_token": null,
    "closed_at": null,
    "confirmed": true,
    "contact_email": "shivam@gmail.com",
    "created_at": "2022-01-19T14:08:55+05:30",
    "currency": "USD",
    "current_subtotal_price": "222.00",
    "current_subtotal_price_set": {
    "shop_money": {
    "amount": "222.00",
    "currency_code": "USD"
    },
    "presentment_money": {
    "amount": "222.00",
    "currency_code": "USD"
    }
    },
    "current_total_discounts": "0.00",
    "current_total_discounts_set": {
    "shop_money": {
    "amount": "0.00",
    "currency_code": "USD"
    },
    "presentment_money": {
    "amount": "0.00",
    "currency_code": "USD"
    }
    },
    "current_total_duties_set": null,
    "current_total_price": "222.00",
    "current_total_price_set": {
    "shop_money": {
    "amount": "222.00",
    "currency_code": "USD"
    },
    "presentment_money": {
    "amount": "222.00",
    "currency_code": "USD"
    }
    },
    "current_total_tax": "0.00",
    "current_total_tax_set": {
    "shop_money": {
    "amount": "0.00",
    "currency_code": "USD"
    },
    "presentment_money": {
    "amount": "0.00",
    "currency_code": "USD"
    }
    },
    "customer_locale": null,
    "device_id": null,
    "discount_codes": [],
    "email": "shivam@gmail.com",
    "financial_status": "paid",
    "fulfillment_status": null,
    "gateway": "CARD",
    "landing_site": null,
    "landing_site_ref": null,
    "location_id": null,
    "name": "#1005",
    "note": null,
    "note_attributes": [],
    "number": 5,
    "order_number": 1005,
    "order_status_url": "https://ankur-staging-new.myshopify.com/55296458817/orders/8cafedb0ba3b9deaffe6ea9ccd4cced5/authenti...",
    "original_total_duties_set": null,
    "payment_gateway_names": [
    "CARD"
    ],
    "phone": null,
    "presentment_currency": "USD",
    "processed_at": "2022-01-19T14:08:55+05:30",
    "processing_method": "",
    "reference": null,
    "referring_site": null,
    "source_identifier": null,
    "source_name": "6362413",
    "source_url": null,
    "subtotal_price": "222.00",
    "subtotal_price_set": {
    "shop_money": {
    "amount": "222.00",
    "currency_code": "USD"
    },
    "presentment_money": {
    "amount": "222.00",
    "currency_code": "USD"
    }
    },
    "tags": "ank-local",
    "tax_lines": [],
    "taxes_included": false,
    "test": false,
    "token": "8cafedb0ba3b9deaffe6ea9ccd4cced5",
    "total_discounts": "0.00",
    "total_discounts_set": {
    "shop_money": {
    "amount": "0.00",
    "currency_code": "USD"
    },
    "presentment_money": {
    "amount": "0.00",
    "currency_code": "USD"
    }
    },
    "total_line_items_price": "222.00",
    "total_line_items_price_set": {
    "shop_money": {
    "amount": "222.00",
    "currency_code": "USD"
    },
    "presentment_money": {
    "amount": "222.00",
    "currency_code": "USD"
    }
    },
    "total_outstanding": "0.00",
    "total_price": "222.00",
    "total_price_set": {
    "shop_money": {
    "amount": "222.00",
    "currency_code": "USD"
    },
    "presentment_money": {
    "amount": "222.00",
    "currency_code": "USD"
    }
    },
    "total_price_usd": "222.00",
    "total_shipping_price_set": {
    "shop_money": {
    "amount": "0.00",
    "currency_code": "USD"
    },
    "presentment_money": {
    "amount": "0.00",
    "currency_code": "USD"
    }
    },
    "total_tax": "0.00",
    "total_tax_set": {
    "shop_money": {
    "amount": "0.00",
    "currency_code": "USD"
    },
    "presentment_money": {
    "amount": "0.00",
    "currency_code": "USD"
    }
    },
    "total_tip_received": "0.00",
    "total_weight": 0,
    "updated_at": "2022-01-19T14:08:55+05:30",
    "user_id": null,
    "billing_address": {
    "first_name": "Rahul",
    "address1": "S11",
    "phone": "7867564534",
    "city": "Indore",
    "zip": "452001",
    "province": "Madhya Pradesh",
    "country": "India",
    "last_name": "Jain",
    "address2": "S22, S33",
    "company": "DFG",
    "latitude": null,
    "longitude": null,
    "name": "Rahul Jain",
    "country_code": "IN",
    "province_code": "MP"
    },
    "customer": {
    "id": 5508244111425,
    "email": "shivam@gmail.com",
    "accepts_marketing": false,
    "created_at": "2022-01-19T14:06:33+05:30",
    "updated_at": "2022-01-19T14:08:55+05:30",
    "first_name": "Rahul",
    "last_name": "Jain",
    "orders_count": 1,
    "state": "disabled",
    "total_spent": "16484.01",
    "last_order_id": 4149357871169,
    "note": null,
    "verified_email": true,
    "multipass_identifier": null,
    "tax_exempt": false,
    "phone": null,
    "tags": "ank-loc",
    "last_order_name": "#1005",
    "currency": "USD",
    "accepts_marketing_updated_at": "2022-01-19T14:06:33+05:30",
    "marketing_opt_in_level": null,
    "tax_exemptions": [],
    "admin_graphql_api_id": "gid://shopify/Customer/5508244111425",
    "default_address": {
    "id": 6701157089345,
    "customer_id": 5508244111425,
    "first_name": "Rahul",
    "last_name": "Jain",
    "company": "DFG",
    "address1": "S11",
    "address2": "S22, S33",
    "city": "Indore",
    "province": "Madhya Pradesh",
    "country": "India",
    "zip": "452001",
    "phone": "7867564534",
    "name": "Rahul Jain",
    "province_code": "MP",
    "country_code": "IN",
    "country_name": "India",
    "default": true
    }
    },
    "discount_applications": [],
    "fulfillments": [],
    "line_items": [
    {
    "id": 10662175408193,
    "admin_graphql_api_id": "gid://shopify/LineItem/10662175408193",
    "fulfillable_quantity": 1,
    "fulfillment_service": "manual",
    "fulfillment_status": null,
    "gift_card": false,
    "grams": 0,
    "name": "2-month-plan",
    "price": "222.00",
    "price_set": {
    "shop_money": {
    "amount": "222.00",
    "currency_code": "USD"
    },
    "presentment_money": {
    "amount": "222.00",
    "currency_code": "USD"
    }
    },
    "product_exists": false,
    "product_id": null,
    "properties": [],
    "quantity": 1,
    "requires_shipping": true,
    "sku": null,
    "taxable": true,
    "title": "2-month-plan",
    "total_discount": "0.00",
    "total_discount_set": {
    "shop_money": {
    "amount": "0.00",
    "currency_code": "USD"
    },
    "presentment_money": {
    "amount": "0.00",
    "currency_code": "USD"
    }
    },
    "variant_id": null,
    "variant_inventory_management": null,
    "variant_title": null,
    "vendor": null,
    "tax_lines": [],
    "duties": [],
    "discount_allocations": []
    }
    ],
    "refunds": [],
    "shipping_address": {
    "first_name": "Rahul",
    "address1": "S11",
    "phone": "7867564534",
    "city": "Indore",
    "zip": "452001",
    "province": "Madhya Pradesh",
    "country": "India",
    "last_name": "Jain",
    "address2": "S22, S33",
    "company": "DFG",
    "latitude": null,
    "longitude": null,
    "name": "Rahul Jain",
    "country_code": "IN",
    "province_code": "MP"
    },
    "shipping_lines": []
    }
    }                                                                                                                                                                                      Request 3:  Second Order for above customer:
    API : https://ankur-staging-new.myshopify.com/admin/api/2019-04/orders.json
    Request : {
    "order":{
    "email":"shivam@gmail.com",
    "shipping_address":{
    "first_name":"Rahul",
    "last_name":"Jain",
    "name":"Rahul Jain",
    "address1":"S11",
    "address2":"S22, S33",
    "company":"DFG",
    "phone":"7867564534",
    "city":"Indore",
    "zip":"452001",
    "province":"Madhya Pradesh",
    "country":"IN",
    "country_code":null,
    "province_code":"MP"
    },
    "billing_address":{
    "first_name":"Rahul",
    "last_name":"Jain",
    "name":"Rahul Jain",
    "address1":"S11",
    "address2":"S22, S33",
    "company":"DFG",
    "phone":"7867564534",
    "city":"Indore",
    "zip":"452001",
    "province":"Madhya Pradesh",
    "country":"IN",
    "country_code":null,
    "province_code":"MP"
    },
    "line_items":[
    {
    "variant_id":null,
    "quantity":1,
    "price":"222.00",
    "title":"2-month-plan",
    "taxable":true,
    "tax_lines":null
    }
    ],
    "total_tax":"0.00",
    "total_discounts":"0.00",
    "taxes_included":false,
    "transactions":[
    {
    "amount":"222.00",
    "authorization":null,
    "currency":"USD",
    "test":false,
    "kind":"sale",
    "id":null,
    "status":null,
    "gateway":"CARD",
    "parent_id":null,
    "orderId":null
    }
    ],
    "tags":"ank-local",
    "customer":{
    "id":5508244111425,
    "email":"shivam@gmail.com",
    "accepts_marketing":"false",
    "first_name":"Shivam",
    "last_name":"Soni",
    "tags":"ank-loc"
    },
    "metafields":[
    {
    "id":null,
    "namespace":"chargebee",
    "key":"order_id",
    "value":"302",
    "value_type":"String",
    "description":"Test Order"
    }
    ],
    "currency":"USD",
    "inventory_behaviour":"decrement_obeying_policy"
    }
    }
    Response : {
    "order": {
    "id": 4149358723137,
    "admin_graphql_api_id": "gid://shopify/Order/4149358723137",
    "app_id": 6362413,
    "browser_ip": null,
    "buyer_accepts_marketing": false,
    "cancel_reason": null,
    "cancelled_at": null,
    "cart_token": null,
    "checkout_id": null,
    "checkout_token": null,
    "closed_at": null,
    "confirmed": true,
    "contact_email": "shivam@gmail.com",
    "created_at": "2022-01-19T14:10:29+05:30",
    "currency": "USD",
    "current_subtotal_price": "222.00",
    "current_subtotal_price_set": {
    "shop_money": {
    "amount": "222.00",
    "currency_code": "USD"
    },
    "presentment_money": {
    "amount": "222.00",
    "currency_code": "USD"
    }
    },
    "current_total_discounts": "0.00",
    "current_total_discounts_set": {
    "shop_money": {
    "amount": "0.00",
    "currency_code": "USD"
    },
    "presentment_money": {
    "amount": "0.00",
    "currency_code": "USD"
    }
    },
    "current_total_duties_set": null,
    "current_total_price": "222.00",
    "current_total_price_set": {
    "shop_money": {
    "amount": "222.00",
    "currency_code": "USD"
    },
    "presentment_money": {
    "amount": "222.00",
    "currency_code": "USD"
    }
    },
    "current_total_tax": "0.00",
    "current_total_tax_set": {
    "shop_money": {
    "amount": "0.00",
    "currency_code": "USD"
    },
    "presentment_money": {
    "amount": "0.00",
    "currency_code": "USD"
    }
    },
    "customer_locale": null,
    "device_id": null,
    "discount_codes": [],
    "email": "shivam@gmail.com",
    "financial_status": "paid",
    "fulfillment_status": null,
    "gateway": "CARD",
    "landing_site": null,
    "landing_site_ref": null,
    "location_id": null,
    "name": "#1006",
    "note": null,
    "note_attributes": [],
    "number": 6,
    "order_number": 1006,
    "order_status_url": "https://ankur-staging-new.myshopify.com/55296458817/orders/49ff15e6c64b9a241d66616b905bc4cc/authenti...",
    "original_total_duties_set": null,
    "payment_gateway_names": [
    "CARD"
    ],
    "phone": null,
    "presentment_currency": "USD",
    "processed_at": "2022-01-19T14:10:29+05:30",
    "processing_method": "",
    "reference": null,
    "referring_site": null,
    "source_identifier": null,
    "source_name": "6362413",
    "source_url": null,
    "subtotal_price": "222.00",
    "subtotal_price_set": {
    "shop_money": {
    "amount": "222.00",
    "currency_code": "USD"
    },
    "presentment_money": {
    "amount": "222.00",
    "currency_code": "USD"
    }
    },
    "tags": "ank-local",
    "tax_lines": [],
    "taxes_included": false,
    "test": false,
    "token": "49ff15e6c64b9a241d66616b905bc4cc",
    "total_discounts": "0.00",
    "total_discounts_set": {
    "shop_money": {
    "amount": "0.00",
    "currency_code": "USD"
    },
    "presentment_money": {
    "amount": "0.00",
    "currency_code": "USD"
    }
    },
    "total_line_items_price": "222.00",
    "total_line_items_price_set": {
    "shop_money": {
    "amount": "222.00",
    "currency_code": "USD"
    },
    "presentment_money": {
    "amount": "222.00",
    "currency_code": "USD"
    }
    },
    "total_outstanding": "0.00",
    "total_price": "222.00",
    "total_price_set": {
    "shop_money": {
    "amount": "222.00",
    "currency_code": "USD"
    },
    "presentment_money": {
    "amount": "222.00",
    "currency_code": "USD"
    }
    },
    "total_price_usd": "222.00",
    "total_shipping_price_set": {
    "shop_money": {
    "amount": "0.00",
    "currency_code": "USD"
    },
    "presentment_money": {
    "amount": "0.00",
    "currency_code": "USD"
    }
    },
    "total_tax": "0.00",
    "total_tax_set": {
    "shop_money": {
    "amount": "0.00",
    "currency_code": "USD"
    },
    "presentment_money": {
    "amount": "0.00",
    "currency_code": "USD"
    }
    },
    "total_tip_received": "0.00",
    "total_weight": 0,
    "updated_at": "2022-01-19T14:10:30+05:30",
    "user_id": null,
    "billing_address": {
    "first_name": "Rahul",
    "address1": "S11",
    "phone": "7867564534",
    "city": "Indore",
    "zip": "452001",
    "province": "Madhya Pradesh",
    "country": "India",
    "last_name": "Jain",
    "address2": "S22, S33",
    "company": "DFG",
    "latitude": 22.725765,
    "longitude": 75.8837169,
    "name": "Rahul Jain",
    "country_code": "IN",
    "province_code": "MP"
    },
    "customer": {
    "id": 5508244111425,
    "email": "shivam@gmail.com",
    "accepts_marketing": false,
    "created_at": "2022-01-19T14:06:33+05:30",
    "updated_at": "2022-01-19T14:10:30+05:30",
    "first_name": "Shivam",
    "last_name": "Soni",
    "orders_count": 2,
    "state": "disabled",
    "total_spent": "32968.01",
    "last_order_id": 4149358723137,
    "note": null,
    "verified_email": true,
    "multipass_identifier": null,
    "tax_exempt": false,
    "phone": null,
    "tags": "ank-loc",
    "last_order_name": "#1006",
    "currency": "USD",
    "accepts_marketing_updated_at": "2022-01-19T14:06:33+05:30",
    "marketing_opt_in_level": null,
    "tax_exemptions": [],
    "admin_graphql_api_id": "gid://shopify/Customer/5508244111425",
    "default_address": {
    "id": 6701157089345,
    "customer_id": 5508244111425,
    "first_name": "Rahul",
    "last_name": "Jain",
    "company": "DFG",
    "address1": "S11",
    "address2": "S22, S33",
    "city": "Indore",
    "province": "Madhya Pradesh",
    "country": "India",
    "zip": "452001",
    "phone": "7867564534",
    "name": "Rahul Jain",
    "province_code": "MP",
    "country_code": "IN",
    "country_name": "India",
    "default": true
    }
    },
    "discount_applications": [],
    "fulfillments": [],
    "line_items": [
    {
    "id": 10662178029633,
    "admin_graphql_api_id": "gid://shopify/LineItem/10662178029633",
    "fulfillable_quantity": 1,
    "fulfillment_service": "manual",
    "fulfillment_status": null,
    "gift_card": false,
    "grams": 0,
    "name": "2-month-plan",
    "price": "222.00",
    "price_set": {
    "shop_money": {
    "amount": "222.00",
    "currency_code": "USD"
    },
    "presentment_money": {
    "amount": "222.00",
    "currency_code": "USD"
    }
    },
    "product_exists": false,
    "product_id": null,
    "properties": [],
    "quantity": 1,
    "requires_shipping": true,
    "sku": null,
    "taxable": true,
    "title": "2-month-plan",
    "total_discount": "0.00",
    "total_discount_set": {
    "shop_money": {
    "amount": "0.00",
    "currency_code": "USD"
    },
    "presentment_money": {
    "amount": "0.00",
    "currency_code": "USD"
    }
    },
    "variant_id": null,
    "variant_inventory_management": null,
    "variant_title": null,
    "vendor": null,
    "tax_lines": [],
    "duties": [],
    "discount_allocations": []
    }
    ],
    "refunds": [],
    "shipping_address": {
    "first_name": "Rahul",
    "address1": "S11",
    "phone": "7867564534",
    "city": "Indore",
    "zip": "452001",
    "province": "Madhya Pradesh",
    "country": "India",
    "last_name": "Jain",
    "address2": "S22, S33",
    "company": "DFG",
    "latitude": 22.725765,
    "longitude": 75.8837169,
    "name": "Rahul Jain",
    "country_code": "IN",
    "province_code": "MP"
    },
    "shipping_lines": []
    }
    }
  • Are you able to provide the screenshots that you put in the zipfolder in a reply not within the zip folder, so I can take a look at them? --> Sure. please check attached screenshots. 
  • Are you working on an application and this issue is coming up while working on things? --> Yes. We have integrated with Shopify with Chargebee to sync orders in Shopify. We are facing same issue there as well.
cb6
Shopify Partner
6 0 0

Hi Imogen,

 

Below are the answers to your questions:

 

  • Are you creating this customer natively within Shopify's backend, or are you using an application to create this customer?  --> I am creating customers within Shopify's backend through Shopify's create customer API. After creating the customer I have created 2 orders through Shopify's create order API. Please refer the all the 3 API request/response in the attachments.
  • Are you able to provide the screenshots that you put in the zipfolder in a reply not within the zip folder, so I can take a look at them? --> Sure. please check attached screenshots. 
  • Are you working on an application and this issue is coming up while working on things? --> Yes. We have integrated with Shopify with Chargebee to sync orders in Shopify. We are facing same issue there as well.
Imogen
Shopify Staff (Retired)
2045 227 396

Hi again, @cb6

 

Thanks very much for the screenshots and your reply! I checked out the images, and it looks like there may be two customer accounts, is this correct? If you go to the 'customers' section of your admin, do you see one account for Shivam Soni and another for Rahul Jain? If so, can you check out these customer accounts (similar to what you did with your screenshots) and let me know how many orders each customer seems to have? 

 

When did you first notice that this was happening? Is it happening with other customer accounts? If you try to make a new customer account, and take the same steps with making an order for that new account, does the name update? Try to use different details than what was used for the original customers. Try doing this without using the API (so just use the admin and make a draft order, or an order through the checkout), and see if the name change occurs there. 

When did you install the application you mentioned? 
There is always a chance that an application that's been installed may be causing some issues. If we can determine when the application was installed, perhaps we can pinpoint if it's playing a role or not. 

 

Since we're unable to dive into accounts through the forums, we may need to refer to our live support team for some assistance here. I'll wait to hear back from you before making that suggestion, however, as I think we may be able to determine something through our conversations here. 

 

 

Imogen | Social Care @ Shopify 
 - Was my reply helpful? Click Like to let me know! 
 - Was your question answered? Mark it as an Accepted Solution
 - To learn more visit the Shopify Help Center or the Shopify Blog