No content to show
User Activity
11-13-2024
Solved it by using the above and slipping the has_inventory == false in the following: {%- elsif card_product.tags contains 'Back Order' and has_inventory == false -%}
<span
id="NoMediaStandardBadge-{{ section_id }}-{{ c...
11-13-2024
Hi Joe, thanks for that, I'd still need the check for the "Back Order" tag as not all items are back orderable. So the whole logic should be: Is it out of stock and does not have Continue selling when out of stock selected? -> apply Out of Stock badg...
11-12-2024
The store is: https://sherburngamingcentre.com/ I want the back order button to only appear when the actual inventory is 0 or less. I believe I can't use card_product.available == false , as all products have the Continue selling when out of stock o...
11-12-2024
Hi there, I'm trying to add a Backorder Badge that appears on the collections page like this:This uses the following base code within card-product.liquid: <div class="card__badge {{ settings.badge_position }}">
{%- if card_prod...
apologies, I've updated the original post
10-23-2024
Hi there, I've followed a couple of tutorials to add code to my site to replace my Add to Cart Button with either a Pre-Order button or Back Order Button using the code below: {% if product.tags contains 'Back Order' %}
{% assign backord...