Shopify variant title: how it works and how to change it

On Shopify variant titles are automatically generated using the option values (with a / in between) – ie. if you have a product with options (for this example, let’s use Color and Size with the values Red and Medium respectively) the variant for that product would be titled Red / Medium. These titles can’t be changed in the admin. They are generated from the option values set for your products.
This matters because the variant title shows up in more places than most merchants realize: the cart, checkout, order confirmations, packing slips, analytics reports, Google Shopping feeds, and the Shopify admin. If your option values are unclear, the variant title is equally unclear everywhere it appears.
In this post
- How variant titles are generated
- Where variant titles appear
- How to change variant titles
- SEO impact of variant titles
- Single-option products and the “Default Title”
- FAQ
How variant titles are generated
Shopify joins all of the option values together with ” / ” (space-slash-space) to create the title of each variant.
| Option 1 | Option 2 | Option 3 | Variant title |
|---|---|---|---|
| Red | Medium | Red / Medium | |
| Blue | Large | Cotton | Blue / Large / Cotton |
| Black | Black |
The title follows the order of the options listed. In the above example, Option 1 is “Size,” and it comes first. If we reverse the order of the options (i.e. swap Size and Color to have Color first), the title of the variant would change from “Red / Medium” to “Medium / Red.” This change would appear in the product description, in the product’s information box on the site, and in search results.
You can’t add custom text to the variant title or change the ” / ” separator. The only way to control the title is by controlling the values of the option themselves.
Where variant titles appear
- Cart and cart drawer: Shows as the line item variant descriptor under the product title. “Red / Medium” appears below “Classic Tee”.
- Checkout: Same as cart. The variant title helps the customer confirm they selected the right option before paying.
- Order confirmation email: The variant title appears in the order summary sent to the customer.
- Shopify admin orders: Staff see variant titles when processing orders, picking, and packing.
- Packing slips and invoices: Printed documents include the variant title for fulfillment accuracy.
- Google Shopping feed: The variant title is often appended to the product title in the feed (e.g., “Classic Tee (Red / Medium)”). Clean variant titles improve how your products appear in Shopping results.
- Analytics and reports: Sales by variant reports use variant titles. Unclear titles make analysis harder.
For cart thumbnails, the variant title works together with the variant image to aid in correctness. However, in the thumbnail above, the variant title ” CLR-04 / SZ-M” with a red photo fosters uncertainty as to the correctness of the order. In contrast, on the product page, the variant title “Red / Medium” with the red product photo gives the customer high confidence.
How to change variant titles
Since variant titles are automatically generated from option values, changing the title also means changing the option values:
- Go to Products and open the product
- In the Variants section, click Edit options
- Change the option value (e.g., “CLR-04” to “Navy Blue”)
- Save
Changes the option name in the product variant’s title everywhere (cart, checkout, orders, feeds) and also updates the swatch label on the product page.
For mass updates, use the Shopify bulk editor or a CSV export/import process. The generated CSV will have separate columns for each option value (Option1 Value, Option2 Value, Option3 Value, etc.) to update all the relevant option values.
Note: Options values on live products can affect cart sessions if changed. For example, renaming “Red” to “Crimson Red” will display “Red / Medium” in the cart until the cart session is reset.
SEO impact of variant titles
Variant titles affect SEO in two ways:
- Google Shopping feed. The variant title is appended to the product title in many feed apps. “Classic Tee (Red / Medium)” is more descriptive than “Classic Tee (CLR-04 / SZ-M)” and matches more search queries.
- Structured data. The variant title appears in the offer name within Product schema. Descriptive names help Google understand your product range better.
For stores where each color needs its own SEO-optimized URL and title use separate products per color with individual titles (eg. Classic Tee in Navy Blue) and list as combined with Rubik Combined Listings. Full titles are present for each product instead of variant titles.
Single-option products and the “Default Title”
Products with no variant options (just one version) have a single variant with the title “Default Title”. This is Shopify’s internal default and may display in the admin, in the cart and/or checkout on some themes under a “Default Title” variant.
To avoid displaying “Default Title” to customers, most themes hide the variant title when there is only one variant. However some themes will display the title. If your theme displays the variant title, you can either add a real option to the product (even just “Regular” as a single value) or hide it with CSS:
/* Hide Default Title in cart */
.cart-item__variant:contains("Default Title") {
display: none;
}
/* Or more broadly: hide variant title for single-variant products */
.product-option--single .product-option__value {
display: none;
}
For stores with many products that need well-organized variant displays, Rubik Variant Images renders the variant picker with clean color name labels and customizable swatch styling. The option values you set become both the variant title and the swatch labels, so getting the naming right serves double duty.
“This app is perfect. it is incredibly easy to set up and use. There are so many cool ways you can set up your variant images AND adjust your swatches. The youtube tutorials are super helpful. I got a bit stuck trying to set up one of my products and Zulf was super quick to respond and help. Definitely recommend it if you are reading this ;D”
Anonymous merchant, Rubik Variant Images on the Shopify App Store
Frequently asked questions
Can I edit the Shopify variant title directly?
Variant titles are auto-generated from option values joined with ” / “. To change the title, change the option values themselves. The title updates everywhere automatically.
How do I hide “Default Title” from showing to customers?
Most themes hide this for single-variant products. If your theme shows this for your product, you either need to add a real option value (eg “Regular”) OR you need to hide out the “Default Title” elements with CSS.
Does the option order affect the variant title?
Yes. The order of the Options within the title of listing Option 1 will display first in the title. For example, “Color: Red, Size: Medium” will show up as “Red / Medium” whereas “Size: Medium, Color: Red” will show “Medium / Red”. Decide what order you prefer customers to read.
Do variant titles affect Google Shopping listings?
Yes, many of the feed apps are writing out the variant title and including it in the product title. Many of the descriptive option values “Navy Blue / Medium / Cotton” make for a better Shopping search listing than the codes “NB / M / CTN”. This can have an effect on the click-through rate from the Shopping results.
Can I change the variant title separator from ” / ” to something else?
Need a fix for this? No, you don’t. Shopify already uses ‘/’ to separate the titles of variants. You can change the way titles display on the site by using Liquid or JavaScript, but on the admin/api side, the titles of variants will always be in the ‘name-name-name’ format.