Hello, I am using the Minimal theme and I want to change the Sold Out Circle badge that covers the product to a simple “sold out” text next to the price. So it would look something like
$68 - sold out
How can i achieve this?
Hello, I am using the Minimal theme and I want to change the Sold Out Circle badge that covers the product to a simple “sold out” text next to the price. So it would look something like
$68 - sold out
How can i achieve this?
Hello there @gavinfischenich I understand how you feel and I believe I can help you out. Inbox me your website URL so I’d access what the problem is
can you please provide store url
thanks for url can you try this code its proper look try
.badge--sold-out {top: 30px;left: 30px;width: 40px;height: 40px;font-size: 10px;}
That helped get rid of the circle badge, however what I would like to achieve is having “Sold Out” appear next to the price of the item. Is there code for this?
i dont want there to be a badge, i want it to just say sold out next to the price of the item.
yes, please share product gird item code so i will update
yes, please share us code
{% unless current_collection == blank %}
{% assign current_collection = collection %}
{% endunless %}
{% assign on_sale = false %}
{% assign sale_text = ‘products.product.sale’ | t %}
{% if featured.compare_at_price > featured.price %}
{% assign on_sale = true %}
{% endif %}
{% assign sold_out = true %}
{% assign sold_out_text = ‘products.product.sold_out’ | t %}
{% if featured.available %}
{% assign sold_out = false %}
{% endif %}
{% if featured.title == ‘’ %}
{% comment %}add default state for product block in storefront editor{% endcomment %}
{% capture product_title %}{{ ‘home_page.onboarding.product_title’ | t }}{% endcapture %}
{% else %}
{% capture product_title %}{{ featured.title | escape }}{% endcapture %}
{% endif %}
HERE IS THE CODE
{% unless current_collection == blank %}
{% assign current_collection = collection %}
{% endunless %}
{% assign on_sale = false %}
{% assign sale_text = ‘products.product.sale’ | t %}
{% if featured.compare_at_price > featured.price %}
{% assign on_sale = true %}
{% endif %}
{% assign sold_out = true %}
{% assign sold_out_text = ‘products.product.sold_out’ | t %}
{% if featured.available %}
{% assign sold_out = false %}
{% endif %}
{% if featured.title == ‘’ %}
{% comment %}add default state for product block in storefront editor{% endcomment %}
{% capture product_title %}{{ ‘home_page.onboarding.product_title’ | t }}{% endcapture %}
{% else %}
{% capture product_title %}{{ featured.title | escape }}{% endcapture %}
{% endif %}
I am trying to copy and paste the code here but it will not let me.
how do i share it?
if possible to give me theme access so i will quiack fix
how do i do that?