DEV Community

Sherwin Gustuir
Sherwin Gustuir

Posted on

NEED HELP FOR SHOPIFY

Hello Amazing Developer,

Just want to ask some help, My client has a website and asking me to edit I don't know the call of this but as you can see on the photo below. The YELLOW CIRCLED, my client wants to change the meta discription and also on the RED Circled my clients want also to change it into (about us, BN treament, Book now, shop, Promotion)

can you help me how can I do that? I am going a hard time searching it in youtube. Thank you in advance!

Image description

Top comments (2)

Collapse
 
fabiancdng profile image
Fabian Reinders • Edited

Unfortunately, I'm not familiar with Shopify directly but generally every page can have <meta> tags and a <title> tag in the <head> tag of the HTML describing the title and description of the page (that is showing up on search engines).

A title is defined by the <title> tag:

<head>
  <title>My Shopify Store</title>
</head>
Enter fullscreen mode Exit fullscreen mode

In this example "My Shopify Store" would be shown as the title in Google.

A description is defined by the <meta name="description"> tag:

 <head>
  <meta name="description" content="We offer a range of ... products....">
</head> 
Enter fullscreen mode Exit fullscreen mode

In this example "We offer a range of ... products...." would be shown as the description on Google.

Either you have access to the code that makes up the HTML <head> tag of the page and you change it in there (through a plugin/theme?)

Or you can adjust that somewhere in Shopify itself (if that's possible, I don't know where). In that case you can maybe look it up on Google ("adjust meta description in shopify").

Be aware though that search engine can sometimes disregard your tags and adjust to title/description to their liking.

Also be aware that the change won't show up directly on Google as Google has to re-crawl the website first. That can take quite some time depending on how often Google crawls the site.

Hope that's helpful!

Collapse
 
sgustuir profile image
Sherwin Gustuir

Thank you! I'll take note of this

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Explore a trove of insights in this engaging article, celebrated within our welcoming DEV Community. Developers from every background are invited to join and enhance our shared wisdom.

A genuine "thank you" can truly uplift someone’s day. Feel free to express your gratitude in the comments below!

On DEV, our collective exchange of knowledge lightens the road ahead and strengthens our community bonds. Found something valuable here? A small thank you to the author can make a big difference.

Okay