Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
Hello,
I cannot get rid of the shop name added to the end of every Title Tag across the site. The common answer I have seen to the query is to look for the <title> tag in the theme.liquid file, but there is no <title> tag in this site's file!
Below is the code from the the theme.liquid file:
{%- comment %}<locksmith:ca3c>{% endcomment -%}
{%- include 'locksmith' -%}
{%- comment %}</locksmith:ca3c>{% endcomment -%}
<!doctype html>
<html class="no-js" lang="{{ request.locale.iso_code }}" dir="{{ settings.text_direction }}">
<script>
(function(w, d, t, h, s, n) {
w.FlodeskObject = n;
var fn = function() {
(w[n].q = w[n].q || []).push(arguments);
};
w[n] = w[n] || fn;
var f = d.getElementsByTagName(t)[0];
var v = '?v=' + Math.floor(new Date().getTime() / (120 * 1000)) * 60;
var sm = d.createElement(t);
sm.async = true;
sm.type = 'module';
sm.src=h + s + '.mjs' + v;
f.parentNode.insertBefore(sm, f);
var sn = d.createElement(t);
sn.async = true;
sn.noModule = true;
sn.src=h + s + '.js' + v;
f.parentNode.insertBefore(sn, f);
})(window, document, 'script', 'https://assets.flodesk.com', '/universal', 'fd');
</script>
<script>
window.fd('form', {
formId: '63ae2f4361b8cd734be0c800'
});
</script>
<head>
{{ locksmith_initializations }}
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="theme-color" content="{{ settings.color_button }}">
<link rel="canonical" href="{{ canonical_url }}">
<link rel="preconnect" href="https://cdn.shopify.com">
<link rel="preconnect" href="https://fonts.shopifycdn.com">
<link rel="dns-prefetch" href="https://productreviews.shopifycdn.com">
<link rel="dns-prefetch" href="https://ajax.googleapis.com">
<link rel="dns-prefetch" href="https://maps.googleapis.com">
<link rel="dns-prefetch" href="https://maps.gstatic.com">
{%- if settings.favicon != blank -%}
<link rel="shortcut icon" href="{{ settings.favicon | img_url: '32x32' }}" type="image/png" />
{%- endif -%}
{%- render 'seo-title' -%}
{%- if page_description -%}
{%- comment %}<locksmith:e14c>{% endcomment -%}
{%- capture var %}{% render 'locksmith-variables', variable: 'transparent', hiding_scope: 'resource' %}{% endcapture %}{% if var == 'true' %}<meta name="description" content="{{ page_description | escape }}">{% endif -%}
{%- comment %}original: <meta name="description" content="{{ page_description | escape }}">{%- endcomment %}
{%- comment %}</locksmith:e14c>{% endcomment -%}
{%- endif -%}
{%- render 'social-meta-tags' -%}
{{ content_for_header }}
<script>
var theme = {
stylesheet: "{{ 'theme.css' | asset_url }}",
template: {{ template | json }},
routes: {
home: "{{ routes.root_url }}",
cart: "{{ routes.cart_url | append: '.js' }}",
cartPage: "{{ routes.cart_url }}",
cartAdd: "{{ routes.cart_add_url | append: '.js'}}",
cartChange: "{{ routes.cart_change_url | append: '.js' }}"
},
strings: {
addToCart: {{ 'products.product.add_to_cart' | t | json }},
soldOut: {{ 'products.product.sold_out' | t | json }},
unavailable: {{ 'products.product.unavailable' | t | json }},
regularPrice: {{ 'products.general.regular_price' | t | json }},
salePrice: {{ 'products.general.sale_price' | t | json }},
inStockLabel: {{ 'products.product.in_stock_label' | t | json }},
stockLabel: {{ 'products.product.stock_label' | t: count: '[count]' | json }},
willNotShipUntil: {{ 'products.product.will_not_ship_until' | t: date: '[date]' | json }},
willBeInStockAfter: {{ 'products.product.will_be_in_stock_after' | t: date: '[date]' | json }},
waitingForStock: {{ 'products.product.waiting_for_stock' | t | json }},
cartItems: {{ 'cart.general.item_count' | t: count: '[count]' | json }},
cartConfirmDelete: {{ 'cart.general.delete_confirm' | t | json }},
cartTermsConfirmation: {{ 'cart.general.terms_confirm' | t | json }}
},
settings: {
dynamicVariantsEnable: true,
cartType: {{ settings.cart_type | json }},
isCustomerTemplate: {% if request.page_type contains 'customers/' %}true{% else %}false{% endif %},
moneyFormat: {{ shop.money_format | json }},
quickView: {{ settings.quick_shop_enable }},
hoverProductGrid: {{ settings.product_hover_image }},
themeName: 'Streamline',
themeVersion: "5.0.1"
}
};
document.documentElement.className = document.documentElement.className.replace('no-js', 'js');
</script>
{%- render 'css-variables' -%}
{%- render 'critical-css' -%}
{{ 'theme.css' | asset_url | stylesheet_tag: preload: true }}
<script src="{{ 'vendor-v6.js' | asset_url | split: '?' | first }}" defer="defer"></script>
{%- if shop.enabled_currencies.size > 1 -%}
<link rel="stylesheet" href="{{ 'country-flags.css' | asset_url | split: '?' | first }}">
{%- endif -%}
<script src="{{ 'theme.js' | asset_url }}" defer="defer"></script>
{%- if request.page_type contains 'customers/' -%}
<script src="{{ 'shopify_common.js' | shopify_asset_url }}" defer="defer"></script>
{%- endif -%}
{% render 'bookthatapp-widgets' %}
</head>
<body class="template-{{ template | replace: '.', ' ' | truncatewords: 1, '' | handle }}{% if request.path == '/challenge' %} template-challange{% endif %}{% if settings.cart_type == 'sticky' and cart.item_count > 0 and template != 'cart' %} body--sticky-cart-open{% endif %}{% if cart.item_count > 0 %} cart-has-items{% endif %}" ontouchstart="return true;" data-transitions="{{settings.animate_page_transitions}}" data-animate_underlines="true" data-animate_images="{{settings.animate_images}}" data-button_style="{{settings.button_style}}" data-type_product_capitalize="{{settings.type_product_capitalize}}" data-type_header_capitalize="{{settings.type_header_capitalize}}" data-product_image_scatter="{{settings.product_image_scatter}}" data-button_type_style="{{settings.button_type_style}}">
<div id="OverscrollLoader" class="overscroll-loader" aria-hidden="true">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--full-color icon-loader--full-color"><path class="icon-loader__close" d="M19 17.61l27.12 27.13m0-27.12L19 44.74"/><path class="icon-loader__path" d="M40 90a40 40 0 1 1 20 0"/></svg>
</div>
<div class="root">
{%- if settings.animate_page_transitions -%}
<script>window.setTimeout(function() { document.body.className += " loaded"; }, 25);</script>
{%- endif -%}
{%- liquid
assign loader_size = settings.desktop_loader_width | append: 'x'
assign loader_size_mobile = settings.mobile_loader_width | append: 'x'
-%}
<div class="splash-screen">
{%- if settings.animate_page_transitions and settings.logo_loader_image != blank -%}
<div class="splash-screen__loader">
<img
class="loader-logo__img"
src="{{ settings.logo_loader_image | img_url: loader_size }}"
srcset="{{ settings.logo_loader_image | img_url: loader_size }} 1x, {{ settings.logo_loader_image | img_url: loader_size, scale: 2 }} 2x"
aria-hidden="true">
</div>
{%- else -%}
<span class="loader-text">{{ 'general.accessibility.loading' | t }}</span>
{%- endif -%}
</div>
<a class="in-page-link visually-hidden skip-link" href="#MainContent">{{ 'general.accessibility.skip_to_content' | t }}</a>
<div id="PageContainer" class="page-container">
<div class="transition-body">
{%- section 'header' -%}
{% section 'newsletter-popup' %}
<main class="main-content" id="MainContent">
{{ content_for_layout }}{{ locksmith_content_for_layout_addenda }}
</main>
{%- section 'social' -%}
{%- section 'footer' -%}
</div>
</div>
{%- render 'video-modal' -%}
{%- if settings.animate_page_transition_style == 'page-logo' -%}
<div class="loader-logo">
{%- if settings.logo_loader_image != blank -%}
<div class="splash-screen__loader">
<img
class="loader-logo__img"
src="{{ settings.logo_loader_image | img_url: loader_size }}"
srcset="{{ settings.logo_loader_image | img_url: loader_size }} 1x, {{ settings.logo_loader_image | img_url: loader_size, scale: 2 }} 2x"
aria-hidden="true">
</div>
{%- else -%}
<span class="loader-text">{{ 'general.accessibility.loading' | t }}</span>
{%- endif -%}
</div>
{%- endif -%}
</div>
<div id="ProductScreens"></div>
{%- liquid
render 'photoswipe-template'
if settings.cart_type == 'drawer'
render 'cart-drawer'
endif
render 'tool-tip'
-%}
<!-- PF EDT START -->
<script type='text/javascript'>
{%- if content_for_header contains 'shopify-product-customizer' -%}
{%- if product -%}
{%- if product.first_available_variant -%}
var pfProductId = {{ product.metafields.printful.is_synced | json }};
var pfEdt = {{ shop.metafields.printful.is_edt_enabled | json }};
var pfEdtTextColor = {{ shop.metafields.printful.edt_text_color | json }};
var pfEdtBackgroundColor = {{ shop.metafields.printful.edt_background_color | json }};
var pfEdtBorderColor = {{ shop.metafields.printful.edt_border_color | json }};
var pfEdtUseDefaultStyling = {{ shop.metafields.printful.edt_default_style | json }};
var pfEdtTextAlignment = {{ shop.metafields.printful.edt_text_alignment | json }};
var pfEdtFlags = {
US: "{{ 'US.svg' | asset_url }}",CA: "{{ 'CA.svg' | asset_url }}",ES: "{{ 'ES.svg' | asset_url }}",LV: "{{ 'LV.svg' | asset_url }}",GB: "{{ 'GB.svg' | asset_url }}",DE: "{{ 'DE.svg' | asset_url }}",FR: "{{ 'FR.svg' | asset_url }}",AU: "{{ 'AU.svg' | asset_url }}",JP: "{{ 'JP.svg' | asset_url }}",NZ: "{{ 'NZ.svg' | asset_url }}",IT: "{{ 'IT.svg' | asset_url }}",BR: "{{ 'BR.svg' | asset_url }}",KR: "{{ 'KR.svg' | asset_url }}",NL: "{{ 'NL.svg' | asset_url }}",GB: "{{ 'GB.svg' | asset_url }}",
};
{%- else -%}
var pfEdt = 0;
{%- endif -%}
{%- endif -%}
{%- endif -%}
</script>
<!-- PF EDT END -->
</body>
</html>
Is there a way to fix this issue? Thank you for any help that you may provide.
Make sure to add a link to the website and what theme you are using. These can help more in understanding your issue.
Would you please elaborate your issue more, Some screenshots would be more helpful.
Didn't notice the shop name issue you mentioned.
Are you taking about <title>Dr. Perkins - Modern Holistic Health Expert OBGYN | Call Me Dr. P
– Doctor P</title>. You are taking about " - Doctor P" string added in all your page titles?
If that's the case, The title tag on your theme is being rendered through the section "seo-title" as you can see the liquid code line: {%- render 'seo-title' -%} on the code you attached.
Check this seo-title.liquid section and find the string you need to delete or modify.
Hope it helped.
Have a good day
Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025Learn how to increase conversion rates in every stage of the customer journey by enroll...
By Shopify Mar 5, 2025