What Shopify can’t do and OpenCart can
/pages
for Pages/products
for Products/collections/some_product
for Collections of products. www.shop.com/clothes/dresses/name-of-dress
www.shop.com/books/cooking/name-of-book
Shopify has no officially supported tools for sending bulk emails. This includes all kinds of newsletters. You’ll end up migrating to a 3rd party service like MailChimp. On the plus side, if you are already using MailChimp, it comes with a Shopify plugin that can do cool things like syncing purchase data, automating marketing emails like reminding people about abandoned carts and easily integrate products into your email campaigns.
With Shopify, you pay charges on Cash on Delivery too. The transaction charge for order processing, not for payment processing
we do charge transaction fees on orders that are processed as COD as well. The charge will be reflected on the bill following the period in which the order was taken. For example, if you were to sell something as COD today, the 1%-2% transaction fee would be added to your next invoice.
.
All orders that go through your store, regardless of payment method will be charged the transaction fee on the order total link
CSV file can not be bigger than 1MB. Importing 3000 customers takes about 5 minutes
You can not import compressed .csv.gzip
files. Will get error: Error found in CSV Header. Illegal quoting in line 1
It validates Email, Phone, Province Code and Country Codes before importing customers. If any of these is invalid, it’ll skip that customer.
When importing/exporting customers, it only adds one address, the default one. If the customer added multiple addresses, only the default one will get exported in the CSV.
When importing customers, if you leave the fields blank, the default values are as follows:
You can bulk add tags to all customers under Bulk Actions in Shopify
The Total Spent and Total Orders fields will not be imported with customer details, so no point in adding any values for these in your CSV
Any customers with duplicate email addresses or phone numbers will be skipped during an import—only the last record with the duplicated email address or phone number will be imported into the customer list in your Shopify admin.
One customer per email address or phone number, duplicates will be skipped, only last entry will be added for the email/phone..
1-- Find out if you have duplicate accounts with the same email address
2SELECT
3 email, COUNT(*)
4FROM
5 oc_customer
6GROUP BY
7 email
8HAVING
9 COUNT(*) > 1
1-- Find out if you have duplicate accounts with the same
2-- email address and phone number
3SELECT
4 email, telephone, COUNT(*)
5FROM
6 oc_customer
7GROUP BY
8 email, telephone
9HAVING
10 COUNT(*) > 1
1-- Find out if you have duplicate accounts with the same email address and the same name
2SELECT
3 firstname, lastname, email, COUNT(*)
4FROM
5 oc_customer
6GROUP BY
7 firstname, lastname, email
8HAVING
9 COUNT(*) > 1
1-- Find out if you have duplicate accounts with the same
2-- email address, phone number, first and last name
3SELECT
4 `firstname`,
5 `lastname`,
6 `telephone`,
7 `email`,
8 COUNT(*)
9
10FROM `oc_customer`
11
12GROUP BY
13 `firstname`,
14 `lastname`,
15 `telephone`,
16 `email`
17HAVING COUNT(*) > 1
18
19ORDER BY COUNT(*) DESC
NULL
values will produce an error saying invalid entry. Make sure you have the Replace NULL with
option empty when you’re exporting your data." "
. It makes your data safer (e.g. you don’t lose the proeceeding zeros from phone numbers..)ISO 3166-2
style province codes. OpenCart has them in ISO Alpha-2
and ISO Alpha-3
formatsLine 503: Validation failed: Addresses province is not valid
+
or 0
Invalid
Line 159: Validation failed: Phone is invalid // phone missing a digit
Line 190: Validation failed: Phone is invalid // test account, phone is 12345678
Line 212: Validation failed: Phone is invalid // phone missing a digit
Line 270: Validation failed: Email is invalid // domain not resolving
Line 292: Validation failed: Phone is invalid // O50 instead of 050
Line 321: Validation failed: Email is invalid // domain not resolving
Line 469: Validation failed: Phone is invalid // phone missing a digit
Line 552: Validation failed: Phone is invalid // phone missing a digit
Line 699: Validation failed: Phone is invalid // O50 instead of 050
Line 703: Validation failed: Email is invalid // domain not resolving
Line 781: Validation failed: Phone is invalid // +972 (Israel) for a Fujairah, UAE address
You can get an invalid email error for the following reasons
@
(e.g. abc@ hotmail.com)Invalid
i
in @gmail)If the email address is inavlid, you’ll get
Line 321: Validation failed: Email is invalid
Shopify will always import and export weight in grams, even if you specify a different unit.
In order to transfer, you need to convert the weights for all your OpenCart products to grams
Leave the Variant Weight Unit
column empty when importing into Shopify
Shopify allows only one default weight unit system-wide, either grams g
or kilograms kg
(for Metric system) and either pounds lb
or ounces oz
(for Imperial system). Out of kg
, g
, lb
, oz
, you select one as your site’s weight unit. All your products then have the same weight unit.
OpenCart on the other hand allows you to decide weight units for individual products So on your site, you’ll have products in Kilograms, Grams, Ounces and Pounds.
In order to transfer products, you need to convert the different weight units for OpenCart products to the one unit you decide in Shopify.
Variant Weight Unit Valid values are lb
and kg
.