How to. Cloneable text from metabox.io displayed in a list?

I am trying to use a custom field of TEXT that is cloneable and sortable for product specifications. On the template I have a BASIC TEXT set to use dynamic data of {mb_product_spec}. On the front end the specs are displayed and are displayed with <br>s after each spec. How can I achieve wrapping each in a <li> or <p>.
Screen Shot 2022-09-28 at 11.29.26 AM

Currently:
<div class="brxe-text-basic">Spec1<br>Spec2<br>Spec3</div>
Screen Shot 2022-09-28 at 11.28.19 AM

Would Like:
<div class="brxe-text-basic"><p>Spec1</p><p>Spec2</p><p>Spec3</p></div>
or
<div class="brxe-text-basic"><ul><li>Spec1</li><li>Spec2</li><li>Spec3</li></ul></div>

Metabox has the ability to set Before and After and a class. However, I am unable to make any of these display.

Iā€™m not familiar with MetaBox, but for displaying the repeater field from ACF or JetEngine you can use Query Loop and style it as you wish.

SOLTUION!!!

Build a Loop of cloneable field inside a Metabox CPT-Loop:

1 Like