如何在shopify中获取tag <head> description product
How to get tag <head> description product in shopify
我想在产品描述中获取标签头 [1]:https://i.stack.imgur.com/LJ19D.png
https://i.stack.imgur.com/xXaef.png
进入标签li
那我该怎么做?
https://i.stack.imgur.com/RxNvG.png
在这种情况下,首先你应该在head标签的前后添加特定的字符
例如,<!-- split-production --> Production Details <!-- split-production -->
然后你可以像这样<!-- split-production -->
拆分{% assign productDescription = product.description | split:"<!-- split-production -->"%}
然后显示为数组! {{ productDescription[0] }}
等...
我想在产品描述中获取标签头 [1]:https://i.stack.imgur.com/LJ19D.png
https://i.stack.imgur.com/xXaef.png
进入标签li
那我该怎么做?
https://i.stack.imgur.com/RxNvG.png
在这种情况下,首先你应该在head标签的前后添加特定的字符
例如,<!-- split-production --> Production Details <!-- split-production -->
然后你可以像这样<!-- split-production -->
拆分{% assign productDescription = product.description | split:"<!-- split-production -->"%}
然后显示为数组! {{ productDescription[0] }}
等...