Product Promo Field Won't Render Html Code.

Currently the product promo field accepts formatting in the admin panel, but displays text only on the customer side.

{hook name="products:promo_text"}

{if $product.promo_text}
{$product.promo_text nofilter}
{/if}
{/hook}
I tried removing the nofilter, but then it actually shows the html code on the page, instead of rendering the html code.
  • Very interesting dimentional design!
  • Earrings measure 40 mm (1.6 inch)
  • Stainless steel earrings and hooks
Any suggestions?

Do you mean that the list-item marker is not displayed in the list? Try to add the following code to the CSS section of the theme editor:

.ty-product-block__note ul li {
    list-style-type: disc;
}

Thanks, that fixed it. I didn't realize the css was off, I was blaming it on the smarty code.

You are welcome!