[Special Summer Sale] 40% OFF All Magento 2 Themes

Cart

Shopify customize order export csv file

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #9568
    mahammad-adil-azeem
    Participant

    I am trying to create a custom order export csv file from Shopify. I want customer id to be included in shopify-exported-csv-file for order.

    Can I customize shopify csv export ?

    #9570
    david-lazar
    Participant

    You sure can! I do it in my App. I add two missing columns from the order export CSV Shopify produces. I add in the cost price of the item sold, and the product type. Strange things missing from Shopify data in the first place, but hey, with a teeny tiny bit of scripting code, you can add whatever you want to that data.

    So I upload the Shopify data to my server, using the data in the CSV I decide what to add, and then I rewrite the data and voila! Beauty. I save it on Amazon S3 and include a link for downloading the data.

    #9571
    mahammad-adil-azeem
    Participant

    Not Possible. I had a discussion with Shopify support and they said it is a good feature for future. But right now, you can’t customize the export of csv in Shopify.

    #9569
    jayrizzo
    Participant

    If you don’t mind running a bit of code/PHP, I have already done this.

    This script you save to your desktop and then call it like so:

    php ~/Desktop/shopify_to_csv.php 'SHOPIFY_KEY' 'SHOPIFY_PASSWORD' 'SHOPIFY_NAME'
    
    • Login to your Shopify
    • Create A New Private App
    • Grant the new App “Read Access” to “Products, Variants & Collections”
    • Copy API_KEY & Password & Store Name from your Shopify Account.

    and that is what you will use in the above command line using my script. This will automatically convert special characters into HTML encoded references preventing any issue with using microsoft excel.

    Note: Where ever you run this code it will create the csv named after your SHOPIFY_NAME.

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.