@PhMA In the same line as we mentioned in the very first comment. We will share the steps again her below, you can also follow it. Let me know whether it is helpful for you. If still it didn’t works, please share the card-product.liquid file.
- From admin go to “Online Store” → “Themes”.
- Click “Edit code” button from the current theme.
- Go to “card-product.liquid” file.
- Then search “card__heading{% if card_product.featured_media or settings.card_style == ‘standard’ %} h5{% endif %}” in search bar.
- Then paste the below code at the next line of “” like below attached image and then save changes.
{% if card_product.collections %}
{% assign is_bebidas_collection_product = false %}
{% for collection in card_product.collections %}
{% if collection.handle == 'bebidas' %}
{% assign is_bebidas_collection_product = true %}
{% break %}
{% endif %}
{% endfor %}
{% if is_bebidas_collection_product %}
12 pack cans
{% endif %}
{% endif %}
- Then go to “base.css” and paste the below code in bottom of the file.
.card__information #additional_info {
margin: 8px 0px 0px;
font-size: 16px;
line-height: 20px;
}
Result will be like,
Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.





