Since October, after formatting bullet points in the ShopBuilder, you receive an ordered, numbered list (<ol>) instead of an unordered list (<ul>). This behaviour is intentional and is due to a change in the underlying component.
Cause of the behaviour
The behaviour is due to a change in the underlying component, the Quill Editor v2, which the ShopBuilder uses. Unfortunately, in this new version, bullet points (<ul>, unordered lists) are no longer supported, only numbered lists (<ol>, ordered lists). A direct change to this behaviour is not possible.
Alternative for creating unordered lists
If you want to create an unordered list with bullet points, you can use the ShopBuilder's Code Widget and manually insert the HTML code for an unordered list.
Example of an unordered list in the Code Widget:
HTML
<ul>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ul>
Comments
0 comments
Please sign in to leave a comment.