Hi I want to add the text “List Price:” before my regular price.
I’ve tried to edit the ‘main-page.liquid’ like this, but the text and the price will appear on separate lines, but I wish it can display in the same line.
The theme that I’m using is Craft.
{%- when 'price' -%}
List Price {%- render 'price',
product: product,
use_variant: true,
show_badges: true,
price_class: 'price--large'
-%}

