Default title - when I click on store information

Hi everyone, I offer pickup on my website and I just realized that, when I click on store information, the tab opens with store description but its shows an unwanted “Default Title” on the top. See below.

How can I get rid of it?

Thanks a lot!

1 Like

@tjuliana

the default title is your product default variant name do you doesn’t added any variant then show him

Thanks Ketan, you are saying that Default title is the product variant name, and because my product doesnt have any variant, it shows Default title?

If my product doesn’t have any variant, how can I get rid of this? Can I replace it to " "?

If yes, where?

Thank you!

1 Like

@tjuliana

you can just add your product variant

https://help.shopify.com/en/manual/products/variants/add-variants

Hi Ketan, thank you but but none of my products have variants.

So i don’t see why I would add that.

Is there a way to remove “Defautl title”?

Thank you

Juliana

1 Like

@tjuliana

Yes may add custom condition if product variant 0 doesn’t show default variant

Thanks Ketan, how can I do that?

@tjuliana

It can be done by doing some code customization. please send me a personal message and we can discuss what you’d like

Thank you Ketan but Im not too sure on how this is related to product variant if the message “Default title” appears when I click on “View store information”. Any help would be much appreciated.

Thank you.

1 Like

@tjuliana

can you please share the issue image so i will review

Here you go Ketan. When I click on View STore Information, the tab on the side shows Default title under Product Name.

1 Like

@tjuliana

please share store url and particular product page url

www.fourelementscandles.com

It happens to every product, but here’s a product link as an example.

https://www.fourelementscandles.com/collections/all-products/products/12-oz-enigma

Thank you Ketan.

Juliana

1 Like

@tjuliana

oh thanks if possible to share side cart code so i will check and update

hi Ketan, you mean the liquid file?

@tjuliana

yes, current

Here you go. This is the cart-template.liquid

Thank you Ketan

{%- capture section_settings -%}
{
“type”: {{ settings.cart_type | json }},
“itemCount”: {{ cart.item_count }},
“drawer”: false,
“hasShippingEstimator”: {% if section.settings.show_shipping_estimator and cart.item_count > 0 %}true{% else %}false{% endif %}
}
{%- endcapture -%}

{%- if cart.item_count == 0 -%}

{{ 'cart.general.empty' | t }}

{%- if settings.cart_show_free_shipping_threshold -%}
{%- assign threshold_in_cents = settings.cart_free_shipping_threshold | times: 100 -%}
{%- capture remaining_amount -%}{{ cart.total_price | minus: threshold_in_cents | abs | money_without_trailing_zeros }}{%- endcapture -%}

{{- 'cart.general.free_shipping_remaining_html' | t: remaining_amount: remaining_amount -}}

{%- endif -%}

{{ ‘cart.general.empty_button’ | t }}

{%- else -%}

{{ 'cart.general.title' | t }}

{%- if settings.cart_show_free_shipping_threshold -%}
{%- assign threshold_in_cents = settings.cart_free_shipping_threshold | times: 100 -%}

{%- if cart.total_price >= threshold_in_cents -%} {{- 'cart.general.free_shipping' | t -}} {%- else -%} {%- capture remaining_amount -%}{{ cart.total_price | minus: threshold_in_cents | abs | money_without_trailing_zeros }}{%- endcapture -%} {{- 'cart.general.free_shipping_remaining_html' | t: remaining_amount: remaining_amount -}} {%- endif -%}

{%- endif -%}

{% render ‘cart-items’ %}

{%- if settings.cart_enable_notes -%}
{{ 'cart.general.add_note' | t }} {{ cart.note }}
{%- endif -%}
{%- capture shipping_and_taxes_notice -%}{{ 'cart.general.shipping_and_taxes_notice' | t }}{%- endcapture -%}

{%- if cart.cart_level_discount_applications != blank -%}
{%- for discount_application in cart.cart_level_discount_applications -%}

{{ 'cart.general.discount' | t }} ({{ discount_application.title }}): -{{ discount_application.total_allocated_amount | money_without_trailing_zeros }}

{%- endfor -%} {%- endif -%}

{{ 'cart.general.total' | t }}: {{ cart.total_price | money_without_trailing_zeros }}

{%- if shipping_and_taxes_notice != blank -%}

{{ shipping_and_taxes_notice }}

{%- endif -%}

{{ ‘cart.general.checkout’ | t }}

{%- if section.settings.show_shipping_estimator -%}

{{ 'cart.shipping_estimator.title' | t }}

{%- render 'icon' with 'select-arrow' -%}
{%- render 'icon' with 'select-arrow' -%}

{{ ‘cart.shipping_estimator.estimate’ | t }}

{%- endif -%}
{%- endif -%}

{% schema %}
{
“name”: “Cart page”,
“class”: “shopify-section–bordered”,
“settings”: [
{
“type”: “checkbox”,
“id”: “show_shipping_estimator”,
“label”: “Show shipping rates calculator”,
“default”: true
},
{
“type”: “text”,
“id”: “shipping_estimator_default_country”,
“label”: “Default country to use”,
“info”: “If your customer is logged-in, the country in his default shipping address will be selected.”,
“default”: “United States”
}
]
}
{% endschema %}

1 Like

@tjuliana

thanks for code sorry but i can’t see variant code on this file do you have missing or any other files

Hi Ketan, Do you want access to the code? Thank you.

1 Like

@tjuliana

yes please give me full code this issue so i will check and update