How can I create multiple products with customised template

Yes, you can create a single custom template and use it for multiple products in your Shopify store. Instead of creating separate templates for each product, you can leverage the flexibility of liquid code to dynamically populate the content based on the product data.

Here’s an approach you can follow:

  1. Create a new custom template in your Shopify theme. You can duplicate an existing template or create a new one from scratch. Let’s call it “custom-product-template”.

  2. Open the “custom-product-template” file and modify it to include the desired layout and structure for your product page. This can include sections for product title, description, images, pricing, etc.

  3. Within the “custom-product-template”, use liquid code to access and display the relevant product data. For example, you can use variables like {{ product.title }} to display the product title, {{ product.description }} to display the product description, and so on. Use liquid control flow statements like {% if ... %}...{% endif %} to conditionally display specific content based on the product data.

  4. Save the “custom-product-template” file.

  5. Now, when creating or editing a product in your Shopify admin, you can assign the “custom-product-template” as the template for that product. To do this, go to the product’s settings, scroll down to the “Template” section, and select “custom-product-template” from the dropdown menu.

  6. Repeat this process for each of your 110 products, assigning the “custom-product-template” to each one.