Using product title in description as a variable

Topic summary

A user wants to dynamically insert product titles at the beginning of product descriptions on their Shopify store using the Ride theme. Currently, they’re manually adding titles to each description, which is stored in a metafield dropdown.

Proposed Solution:
Another user suggests editing the theme code to add the product title dynamically using Liquid variables:

  • Locate the product description code in the theme files
  • Insert {{ product.title }} before {{ product.description }}

This approach would automatically pull the product title and display it above the description without manual entry for each product. The solution involves basic Liquid templating rather than adding variables within the metafield content itself.

Summarized with AI on October 31. AI used: claude-sonnet-4-5-20250929.

Please read carefully

I want to add the product title at the start of each description on my store. I was hoping to just add [[product title]] or something similar but it doesn’t seem to work. My product descriptions are set up inside a dropdown or meta field

ive attached a photo of a product I did manually to show the desired outcome aswell as the meta field setting.

I’m using the ride theme, thank you in advance

Hi ,

Hope this will help

At edit code find the product description code and add product title dynamically

Example of code

**{{ product.title }}**

{{ product.description }}