Can you modify the URL or tab title on Shopify?

admintb
Navigator
346 6 56

Hi there,

 

I would like to change the URL or Tab Title like this:

 

www.thebasicscollection.com

 

About us | THE BASICS

Contact | THE BASICS

...

 

admintb_0-1686207505546.png

 

Currently it's like this:

 

admintb_1-1686207620518.png

 

Replies 5 (5)

ennovative-it
Shopify Partner
87 10 8

Hello, you have to set the meta-title here:
33.PNG

admintb
Navigator
346 6 56

@ennovative-it  Is there no other way to change the code? Otherwise the mata-title shows also like this in the search results...

AliReviews
Shopify Partner
773 89 353

Hello @admintb ,

 

You can try to follow these steps:

Go to Online Store -> Themes -> Actions -> Edit code

Go to theme.liquid file -> look for the <title> tag within the <head> section. It should look something like this:

<head>
  <title>{{ page_title }}</title>
  <!-- Other meta tags and stylesheets -->
</head>

Modify the text within the <title> tags to change the tab title. For example, if you want to change it to "Welcome to My Store," you would modify it as follows:

<head>
  <title>Welcome to My Store</title>
  <!-- Other meta tags and stylesheets -->
</head>

Save changes 

 

Hope it can help.

Ali Reviews team

- Was my answer helpful? Please hit Like or Mark it as solution!
- Ali Reviews - The must-have Shopify app that empowers you to effortlessly collect, display, and manage product reviews.
- Start your FREE trial today!
admintb
Navigator
346 6 56

@AliReviews  I want to add the " | THE BASICS " not replace

admintb
Navigator
346 6 56

@AliReviews Can you please help?