How can I remove the '+' from variant pricing on my collection page?

Dear Shopify Guru’s,

i would love some help with the following. I’m building a shopify shop in theme shapes. And i now have the problem that the price of products with different pricing per variant shows the price like this in the collection page:

€2,50+

I would love to show it like this:

Vanaf €2,50 (Allready added the “Vanaf” but now I also want to delete the “+”)

See link: https://dekoekfabriek-development.myshopify.com/

How can i do this and is this possible with a small change in code?

would love some help! Thanks in advance!

Can you share the code of the file that is showing this price? you can find it in “card-product.liquid” or “product-card.liquid” or other file name.

Please let me know if this is correct “produxt-tile.liquid”. The ones you suggest I cannot find but I think it’s in here. Thanks in advance!

{%- liquid
assign crop = crop | default: settings.product_tiles_aspect_ratio
assign shape = shape | default: settings.product_tile_media_shape
assign hover_image = blank
if settings.product_tiles_second_image_on_hover and product.media.size > 1
assign hover_image = product.media[1]
endif
if enable_quick_buy
assign product_form_id = ‘product-form-’ | append: section.id | append: ‘-’ | append: product.id
assign current_variant = product.selected_or_first_available_variant
assign featured_media = current_variant.featured_media | default: product.featured_media
endif
if use_variant
assign target = product.selected_or_first_available_variant
else
assign target = product
endif

assign compare_at_price = target.compare_at_price
assign price = target.price | default: 1999
if compare_at_price > price
assign on_sale = true
else
assign on_sale = false
endif
assign available = target.available | default: false
assign money_price = price | money
if settings.currency_code_enabled
assign money_price = price | money_with_currency
endif

if target == product and product.price_varies
assign money_price = money_price | append: ‘+’
endif

if odd_even == ‘odd’
assign rotate = 5
else
assign rotate = -5
endif
-%}
{%- if product and product != empty -%}

{%- if product.featured_media -%}
{%- render 'product-tile-media-image', media: product.featured_media, shape_id: shape_id, shape: shape, is_card: display_on_card, crop: crop, hover_image: hover_image, container_id: section.id, quick_buy: enable_quick_buy, product: product, index: index -%}
{%- endif -%}
{{ product.title }}

{{ product.title | escape }}

{%- if settings.product_tiles_show_vendor -%}

{{ product.vendor }}

{%- endif -%}

{%- if enable_quick_buy -%}
<span class=“inline-block mt-1.5”
x-html=“formatMoney(current_price)”
:class="
{
‘invisible’: !current_variant
}"
data-product-price

{{ current_variant.price | money }}

{% if product.compare_at_price_max > product.price %}


{{ ‘products.general.sale_price’ | t }}

{% if current_variant.compare_at_price > current_variant.price %}
{{ current_variant.compare_at_price | money }}
{% endif %}



{% endif %}
{%- else -%}
{%- render ‘price’,
product: product,
price_class: ‘mt-1.5’,
compare_at_price: compare_at_price,
price: price,
money_price: money_price,
on_sale: on_sale
-%}
{%- endif -%}

{%- if enable_quick_buy -%}
{%- render 'product-tile-quick-buy' section: section, product: product, product_form_id: product_form_id, current_variant: current_variant, is_card: display_on_card -%}
{%- endif -%} {%- if on_sale -%} {%- liquid assign text = 'products.product.on_sale' | t assign id = 'on-sale-sticker-' | append: product.id assign shape = settings.on_sale_badge_shape assign vertical_position = 15 assign horizontal_position = 90 if rotate > 0 assign rotate = -5 else assign rotate = 5 endif if display_on_card assign vertical_position = 5 endif -%} {%- render 'static-sticker', static_id: 'on-sale', shape: shape, id: id, text: text, vertical_position: vertical_position, horizontal_position: horizontal_position, rotate: rotate, width: 100, font_size: '1.563rem', color: 'bg-scheme-accent text-scheme-accent-overlay' %} {%- endif -%} {%- unless available -%} {%- liquid assign text = 'products.product.sold_out' | t assign id = 'sold-out-sticker-' | append: product.id assign vertical_position = 15 assign horizontal_position = 10 if rotate > 0 assign rotate = -5 else assign rotate = 5 endif if display_on_card assign vertical_position = 5 endif -%} {%- render 'static-sticker', static_id: 'sold-out', id: id, text: text, vertical_position: vertical_position, horizontal_position: horizontal_position, rotate: rotate, width: 100, font_size: '1.563rem', color: 'bg-scheme-text text-scheme-text-overlay' %} {%- endunless -%} {% assign metafield_badge = settings.product_tile_metafield_badge %} {% if product.metafields.shapes_theme[metafield_badge] != blank %} {%- liquid assign text = product.metafields.shapes_theme[metafield_badge].value assign id = 'metafield-sticker-' | append: product.id assign shape = settings.metafield_badge_shape assign vertical_position = 15 if display_on_card assign vertical_position = 5 endif if on_sale and available assign horizontal_position = 10 else assign horizontal_position = 90 endif if on_sale and sold_out if display_on_card assign vertical_position = 30 else assign vertical_position = 40 endif endif if rotate > 0 assign rotate = -5 else assign rotate = 5 endif -%} {%- render 'static-sticker', static_id: 'metafield-badge', id: id, text: text, vertical_position: vertical_position, horizontal_position: horizontal_position, rotate: rotate, width: 100, font_size: '1.563rem', color: 'bg-scheme-accent text-scheme-accent-overlay' %} {% endif %}
{% if section.settings.display_on_card and settings.card_show_border_on_shadow %}
{% endif %}
{%- else -%}
{%- render 'media-image-placeholder', shape_id: shape_id, container_id: section.id, index: index, shape: shape, crop: crop, is_card: section.settings.display_on_card -%}

{{ 'sections.onboarding.product_title' | t }}

{% render 'price', price_class: "mt-2" %}
{% if section.settings.display_on_card and settings.card_show_border_on_shadow %}
{% endif %}
{%- endif -%}

Hi Studio Vlliering.

This is PageFly - Free Landing Page Builder. I would love to provide my advice for your store based on 6 years of providing solutions for about 100.000+ active Shopify merchants.

you can remove this code: append: ‘+’

I hope my above information can help you

Kind regards

PageFly