Shopify Theme Development - Liquid Theme Architecture

Поделиться
HTML-код
  • Опубликовано: 9 янв 2025

Комментарии • 31

  • @codezeloss
    @codezeloss Год назад +4

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

  • @lloydblake5471
    @lloydblake5471 Год назад +2

    Thanks for the detailed overview of the architecture

  • @go_all_the_way
    @go_all_the_way 2 месяца назад +1

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

  • @henryleestudio
    @henryleestudio 10 месяцев назад +2

    So many little golden nuggets ✨🏆

  • @Juicelord001
    @Juicelord001 2 месяца назад +1

    Thankyou , this is best explanation on youtube

  • @miettoisdev
    @miettoisdev 7 месяцев назад

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

  • @clover6480
    @clover6480 4 месяца назад

    Thanks!

  • @abdulmohiz3468
    @abdulmohiz3468 4 месяца назад

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

  • @sheri969
    @sheri969 7 месяцев назад

    Excellent explanations, thank you.

  • @umardarazofficials3529
    @umardarazofficials3529 Месяц назад

    one of the best sir

  • @arifhaiman5
    @arifhaiman5 11 месяцев назад +1

    Really helpful

  • @merkmeerz9347
    @merkmeerz9347 Год назад +1

    good stuff 👍👌

  • @ChoyonSarker-y4x
    @ChoyonSarker-y4x Год назад +1

    Thank you very much.

  • @clover6480
    @clover6480 4 месяца назад

    Such a treat.

  • @usama_khalid
    @usama_khalid 7 месяцев назад

    One of the Best...

  • @ezramollena7588
    @ezramollena7588 9 месяцев назад

    great video!

  • @jatinderpal8117
    @jatinderpal8117 5 месяцев назад

    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 4 месяца назад

      lol never again

  • @justdoitk
    @justdoitk 11 месяцев назад

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

    • @stackingcontext
      @stackingcontext  11 месяцев назад

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

  • @abdulmohiz3468
    @abdulmohiz3468 4 месяца назад

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

    • @stackingcontext
      @stackingcontext  4 месяца назад +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

  • @itzsheikhjibon
    @itzsheikhjibon 5 месяцев назад

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

    • @stackingcontext
      @stackingcontext  5 месяцев назад

      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.

  • @zion-faithakakpo6602
    @zion-faithakakpo6602 2 месяца назад

    44:39

  • @zahid3d29
    @zahid3d29 4 месяца назад

    Make something advanced Bro. Thanks

  • @omedjamal1056
    @omedjamal1056 Год назад

    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  Год назад

      The value of "tag" should be in lowercase

    • @omedjamal1056
      @omedjamal1056 Год назад

      @@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  Год назад

      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.