skip to Main Content

I want get tag head in product description [1]: https://i.stack.imgur.com/LJ19D.png

https://i.stack.imgur.com/xXaef.png

into tag li

so how do i do ?

https://i.stack.imgur.com/RxNvG.png

2

Answers


  1. In this case, first you should add specific character at before and after of head tag

    for example, <!-- split-production --> Production Details <!-- split-production -->

    Then you can split by <!-- split-production --> like this {% assign productDescription = product.description | split:"<!-- split-production -->"%}

    Then display it as array! {{ productDescription[0] }} etc…enter image description here

    Login or Signup to reply.
    1. You need to select the text and create list with the list option.
    2. Select text which you want to add in to the heading tag.
      That’s how you can add head tag in to the li tag.enter image description here
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search