Changing product page title (ONLY)

Solved

Changing product page title (ONLY)

jeffreym
Explorer
98 2 19

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

 Screenshot 2024-08-24 at 6.03.44 PM.png

Accepted Solution (1)
BSSCommerce-B2B
Shopify Partner
1455 410 471

This is an accepted solution.

@jeffreym, I'm really sorry, I missed some code. Here is the correct version 😥

 

<div class="product__title" {{ block.shopify_attributes }}>
{% if product.id == 7748266754148 %}
    <h1>Hygia Dental cleaning tablets - 30 Tablets</h1>
    <a href="{{ product.url }}" class="product__title">
      <h2 class="h1">Hygia Dental cleaning tablets - 30 Tablets</h2>
    </a>
 {% else %}
    <h1>{{ product.title | escape }}</h1>
    <a href="{{ product.url }}" class="product__title">
      <h2 class="h1">{{ product.title | escape }}</h2>
    </a>
 {% endif %}
</div>

 

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

View solution in original post

Replies 4 (4)

BSSCommerce-B2B
Shopify Partner
1455 410 471

Hi @jeffreym ,

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

Step 1:  Go to Online Store -> Theme -> Edit code.

BSSCommerceB2B_0-1724490677247.png

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

 

BSSCommerceB2B_2-1724490793690.png

Step 3: Replace it by this code:

 

{% if product.id == 7748266754148 %}
    <h1>Hygia Dental cleaning tablets - 30 Tablets</h1>
    <a href="{{ product.url }}" class="product__title">
      <h2 class="h1">Hygia Dental cleaning tablets - 30 Tablets</h2>
    </a>
 {% else %}
    <h1>{{ product.title | escape }}</h1>
    <a href="{{ product.url }}" class="product__title">
      <h2 class="h1">{{ product.title | escape }}</h2>
    </a>
 {% endif %}

 

Like this

BSSCommerceB2B_5-1724491150802.png

 

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

Have a nice day! 

 

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

jeffreym
Explorer
98 2 19

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

BSSCommerce-B2B
Shopify Partner
1455 410 471

This is an accepted solution.

@jeffreym, I'm really sorry, I missed some code. Here is the correct version 😥

 

<div class="product__title" {{ block.shopify_attributes }}>
{% if product.id == 7748266754148 %}
    <h1>Hygia Dental cleaning tablets - 30 Tablets</h1>
    <a href="{{ product.url }}" class="product__title">
      <h2 class="h1">Hygia Dental cleaning tablets - 30 Tablets</h2>
    </a>
 {% else %}
    <h1>{{ product.title | escape }}</h1>
    <a href="{{ product.url }}" class="product__title">
      <h2 class="h1">{{ product.title | escape }}</h2>
    </a>
 {% endif %}
</div>

 

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

jeffreym
Explorer
98 2 19

beautiful thankyou sir!