Hey! I've got a reoccuring error after conversion when importing into Shopify from Github. From the error log I can see the message " Unknown tag 'schema' " in a lot of different assets files.
From what I understand, a schema tag can only appear in the sections folder, so clearly it seems to be a conversion error caused by me having a faulty structure or wrong attribute placement.
Could someone take a look at these and help me out?
Hi Jonathan, I had a look and I some of the errors come from the way you assign things, the stucture needs to be assign [var] = [source], you have used assign [var] in [source] and to limit the amount: {% for article in blog.articles limit: 3 %} you dont need to uise the piping | 🙂
Hey, I saw that you use component variables for some section names. Can you try to remove that variable and set the section name directly? And can you send the Webflow export aswell? :)
I'll try without the variable section names. I'm using it to easier apply attributes globally as this theme has a lot of repeating content, do you know if there are any plans to support variable section names?
Hi Jonathan, I had a look and I some of the errors come from the way you assign things, the stucture needs to be assign [var] = [source], you have used assign [var] in [source] and to limit the amount: {% for article in blog.articles limit: 3 %} you dont need to uise the piping | 🙂
you can limit the tags shown in articles like this: {% for tag in article.tags limit: 1 %} <div class="blogs_tag"><div li-object="tag.title">{{ tag.title }}</div></div> {% endfor %}