Nov 3, 2019
Hi, I am interested on this feature I saw on a shop and I'm not sure how it can be done. They're separating color variant into groups, COLORS and NEW ARRIVALS, I am really interest...
No content to show
User Activity
Hi @fernandojordio, This is possible if you're on Shopify plus plan, you can use checkout extensions to achieve that.
Ah I see - ok can you try this: If you have a <title> remove it and replace with the one below. <title>{{ seo_title }}</title>
{% if page_description %}
<meta name="description" content="{{ page_description | escape }}">
{% else %}
<me...
I do see the shop name in homepage, what do you want to show ?
Open your theme code editor and search for theme.liquid then add this just under your <head> tag <meta name="description" content="{% if template == 'product' %}{{ product.description | strip_html | truncate: 160 }}{% elsif template == 'collection...
06-07-2024
Hi @Waqa - I believe you can find all the information under Admin GRAPHQL API here.
Hi - not sure how much a programmer you are but you can do that quickly by going to the collection template and adding a condition like this: {% if collection.title contains "your collection" %}
<style>
.card__badge {display:none;}
</style>
{%endi...