Hi Community, this is showing on the cart page before the price.
How can I remove this?
Hi Community, this is showing on the cart page before the price.
How can I remove this?
Hii, @Joegr7
paste this code on top of the component-price.css file.
span.revy-final-item-price {
display: none !important;
}
Thank You.
@Zworthkey Thank you, it fixed the issue. However, it is not showing the total now, only the subtotal below. The total is blank. Can you please advise?
@Joegr7
Remove the code which I have given you so,
I can solve it.
Thank you.
This is code customization work please share your Section /main-cart-items.liquid file code i will check and send correct solution for you
Thanks!
@Zworthkey I have removed the code. Thanks.
@dmwwebartisan Hi, see below your request
{{ ‘component-cart.css’ | asset_url | stylesheet_tag }}
{{ ‘component-cart-items.css’ | asset_url | stylesheet_tag }}
{{ ‘component-totals.css’ | asset_url | stylesheet_tag }}
{{ ‘component-price.css’ | asset_url | stylesheet_tag }}
{{ ‘component-discounts.css’ | asset_url | stylesheet_tag }}
{{ ‘component-loading-overlay.css’ | asset_url | stylesheet_tag }}
{%- if shop.customer_accounts_enabled -%}
{{ 'sections.cart.login.paragraph_html' | t: link: routes.account_login_url }}
{%- endif -%}| {{ 'sections.cart.headings.product' | t }} | {{ 'sections.cart.headings.total' | t }} | {{ 'sections.cart.headings.quantity' | t }} | {{ 'sections.cart.headings.total' | t }} | |
|---|---|---|---|---|
|
{% if item.image %}
|
{%- if section.settings.show_vendor -%}
{{ item.product.vendor }} {%- endif -%}{{ item.product.title | escape }} {%- if item.product.has_only_default_variant == false or item.properties.size != 0 or item.selling_plan_allocation != nil -%}
{%- comment -%}{%- for property in item.properties -%} {{ item.selling_plan_allocation.selling_plan.name }} {%- endif -%}
|
{%- if item.original_line_price != item.final_line_price -%}
{%- if item.variant.available and item.unit_price_measurement -%}
{{ 'products.product.price.unit_price' | t }}
{{ item.variant.unit_price | money }}
/
{{ 'accessibility.unit_price_separator' | t }}
{%- if item.variant.unit_price_measurement.reference_value != 1 -%}
{{- item.variant.unit_price_measurement.reference_value -}}
{%- endif -%}
{{ item.variant.unit_price_measurement.reference_unit }}
{%- endif -%}
|
{{ 'products.product.quantity.label' | t }} {{ 'products.product.quantity.decrease' | t: product: item.product.title | escape }} {% render 'icon-minus' %} {{ 'products.product.quantity.increase' | t: product: item.product.title | escape }} {% render 'icon-plus' %} {% render 'icon-remove' %} |
{%- if item.original_line_price != item.final_line_price -%}
{%- if item.variant.available and item.unit_price_measurement -%}
{{ 'products.product.price.unit_price' | t }}
{{ item.variant.unit_price | money }}
/
{{ 'accessibility.unit_price_separator' | t }}
{%- if item.variant.unit_price_measurement.reference_value != 1 -%}
{{- item.variant.unit_price_measurement.reference_value -}}
{%- endif -%}
{{ item.variant.unit_price_measurement.reference_unit }}
{%- endif -%}
|
{{ 'accessibility.loading' | t }}
{% schema %}
{
“name”: “t:sections.main-cart-items.name”,
“settings”: [
{
“type”: “checkbox”,
“id”: “show_vendor”,
“default”: false,
“label”: “t:sections.main-cart-items.settings.show_vendor.label”
}
]
}
{% endschema %}
Thank you It’s been fixed. Just selected the older version of this
main cart items liquid
An app messed this up.
Thanks for your help,
Please replace following code your Section /main-cart-items.liquid file
{{ 'component-cart.css' | asset_url | stylesheet_tag }}
{{ 'component-cart-items.css' | asset_url | stylesheet_tag }}
{{ 'component-totals.css' | asset_url | stylesheet_tag }}
{{ 'component-price.css' | asset_url | stylesheet_tag }}
{{ 'component-discounts.css' | asset_url | stylesheet_tag }}
{{ 'component-loading-overlay.css' | asset_url | stylesheet_tag }}
{% schema %}
{
"name": "t:sections.main-cart-items.name",
"settings": [
{
"type": "checkbox",
"id": "show_vendor",
"default": false,
"label": "t:sections.main-cart-items.settings.show_vendor.label"
}
]
}
{% endschema %}
If helpful then please Like and Accept Solution