Shopify Theme Development - Liquid Theme Architecture

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 ต.ค. 2024

ความคิดเห็น • 29

  • @go_all_the_way
    @go_all_the_way 5 วันที่ผ่านมา

    Amazing, clear and thorough. You are saving my career ♥

  • @Juicelord001
    @Juicelord001 12 วันที่ผ่านมา +1

    Thankyou , this is best explanation on youtube

  • @codezeloss
    @codezeloss 9 หลายเดือนก่อน +4

    Thank you so much! Easy to follow + Clear explanation + Amazing as always! Let's jump to the next tutorial...

  • @lloydblake5471
    @lloydblake5471 11 หลายเดือนก่อน +2

    Thanks for the detailed overview of the architecture

  • @henryleestudio
    @henryleestudio 8 หลายเดือนก่อน +2

    So many little golden nuggets ✨🏆

  • @miettoisdev
    @miettoisdev 5 หลายเดือนก่อน

    straight to the point, useful information from start to finish. good stuff.

  • @abdulmohiz3468
    @abdulmohiz3468 2 หลายเดือนก่อน

    Very nice explanation. I love it.
    Please also make a video on how to use tailwind with liquid.

  • @sheri969
    @sheri969 5 หลายเดือนก่อน

    Excellent explanations, thank you.

  • @ChoyonSarker-y4x
    @ChoyonSarker-y4x 10 หลายเดือนก่อน +1

    Thank you very much.

  • @clover6480
    @clover6480 หลายเดือนก่อน

    Such a treat.

  • @arifhaiman5
    @arifhaiman5 8 หลายเดือนก่อน +1

    Really helpful

  • @usama_khalid
    @usama_khalid 4 หลายเดือนก่อน

    One of the Best...

  • @merkmeerz9347
    @merkmeerz9347 10 หลายเดือนก่อน +1

    good stuff 👍👌

  • @jatinderpal8117
    @jatinderpal8117 2 หลายเดือนก่อน

    I learnt the hard way what -d means :P. After creating promotions section and doing everything in the local theme editor. I ran shopify theme pull -d, I forgot -e. Everything was gone from local theme. Hey but I learned something!

    • @Payan8
      @Payan8 หลายเดือนก่อน

      lol never again

  • @clover6480
    @clover6480 หลายเดือนก่อน

    Thanks!

  • @abdulmohiz3468
    @abdulmohiz3468 2 หลายเดือนก่อน

    Also the local server reloads very slow. I mean it takes 10-20 seconds. Is there any solution to it?

    • @stackingcontext
      @stackingcontext  หลายเดือนก่อน +1

      I haven't seen that issue but as Shopify CLI is open source you can check the issues tab of its Github repository to see if someone has reported a similar issue.
      github.com/Shopify/cli/issues

  • @ezramollena7588
    @ezramollena7588 6 หลายเดือนก่อน

    great video!

  • @itzsheikhjibon
    @itzsheikhjibon 2 หลายเดือนก่อน

    How to run live server?
    (Shopify theme serve not working)

    • @stackingcontext
      @stackingcontext  2 หลายเดือนก่อน

      Live server will not work, you need Shopify CLI so the Shopify data of your store can be injected into the Liquid files and then converted to html.

  • @justdoitk
    @justdoitk 9 หลายเดือนก่อน

    what is the best solution for creating a theme from scratch without using dawn theme?

    • @stackingcontext
      @stackingcontext  9 หลายเดือนก่อน

      Get a good understanding of how Shopify Themes work and create each file you need yourself.

  • @zahid3d29
    @zahid3d29 2 หลายเดือนก่อน

    Make something advanced Bro. Thanks

  • @omedjamal1056
    @omedjamal1056 10 หลายเดือนก่อน

    I did exactly the way you did: created a file promotions-group.liquid inside sections folder and add this, but keep giving me this error(sections/promotions-group.liquid: Invalid schema: tag is invalid). I even run shopify theme check -a , still given the error and the section can't be added. Any idea how to solve? Thanks
    ******
    {{ section.settings.title }}
    {% schema %}
    {
    "name": "Promotion Group",
    "tag": "Section",
    "class": "promotion_wrapper",
    "settings": [
    {
    "type": "text",
    "label": "Title",
    "id": "title"
    }
    ],
    "presets": [
    {
    "name": "Promotions Group"
    }
    ]
    }
    {% endschema %}

    • @stackingcontext
      @stackingcontext  10 หลายเดือนก่อน

      The value of "tag" should be in lowercase

    • @omedjamal1056
      @omedjamal1056 10 หลายเดือนก่อน

      @@stackingcontext oh , I didn't noticed that. It works. I didn't expect this sensitivity. Is there any way to prevent or find this kind of errors? Thanks again, I am back on rail.

    • @stackingcontext
      @stackingcontext  10 หลายเดือนก่อน

      Not at the moment. You can validate the JSON schema with any JSON schema validator, but for property-specific errors such as the one you had there's no tool available that I'm aware of.