Changing product page title (ONLY)

How can I change my product page title from Sterilization tablets to ‘Hygia Dental cleaning tablets - 30 Tablets’?
I would like this to be done only on the product page and not in the actual product linked to collections page.

Thank you in advance guys!

url: hygiadental.com
pw: melek

Hi @Anonymous ,

It requires some code to achieve your requirement. You can follow these instructions.

Step 1: Go to Online Store → Theme → Edit code.

Step 2: Find the file main-product.liquid, and locate the code snippets I’ve marked here.

Step 3: Replace it by this code:

{% if product.id == 7748266754148 %}
    # Hygia Dental cleaning tablets - 30 Tablets
    
      ## Hygia Dental cleaning tablets - 30 Tablets
    
 {% else %}
    # {{ product.title | escape }}
    
      ## {{ product.title | escape }}
    
 {% endif %}

Like this

I hope these instructions will help you. If they are helpful, please give us likes and mark as the solution.

Have a nice day!

Hi, I put this into my code and I now have extra titles on the other 2 product pages.

@Anonymous , I’m really sorry, I missed some code. Here is the correct version :sad_but_relieved_face:


{% if product.id == 7748266754148 %}
    # Hygia Dental cleaning tablets - 30 Tablets
    
      ## Hygia Dental cleaning tablets - 30 Tablets
    
 {% else %}
    # {{ product.title | escape }}
    
      ## {{ product.title | escape }}
    
 {% endif %}

beautiful thankyou sir!

1 Like