Separate Inner page for few products

I’ve 3 products I’ve to show a dropdown filed in product 2 only .. Is it possible without creating a template ?

@All

Hi @dev_Yahya

Can you kindly share your store link (with the password, if any) with us? We will check it and suggest you a solution if possible.

Hey ! Really appreciate your response here is the link to my store https://viralize.org/
I just want a separate Product inner page for tiktok products..

I created another template for product page and assigned it to desired product it worked but I’ve many products So I want another solution

Hi @dev_Yahya

It is possible to show a dropdown field on a specific product page without creating a new template, but it would require editing the code for the product template. Please follow these steps:

  1. In your Shopify admin, go to Online Store > Themes > Actions > Edit Code.

  2. Open the “Sections” folder and click on the “product-template.liquid” file to open it.

  3. Scroll down to the point where you want to add the dropdown field.

  4. Wrap the code for the dropdown field in an if statement that checks for the product handle. The handle is the unique identifier for the product and can be found in the product URL or in the product admin section.

  5. Save the changes and test the dropdown field on your website.

{% if product.handle == 'product-2-handle' %}
  
{% endif %}

A note that making changes to the code can be risky if you are not familiar with liquid and HTML/CSS. It is recommended to create a backup of the original code or to hire a developer if you are not confident in making the changes yourself.

We hope that this can help you.

Here is an example code snippet that you can use as a reference: