Product Volume in Portland theme

Solved

Product Volume in Portland theme

Iozols
Tourist
8 0 1

How can i create a volume for every product in Product information section?

Accepted Solution (1)

EcomGraduates
Shopify Partner
826 70 120

This is an accepted solution.

You can add a Volume field to your product information section using Shopify Metafields. In your Shopify admin, go to Settings > Custom Data > Products, then add a new Metafield for volume. Set it as a number field and choose the right unit 

 

Once you’ve created it, go to any product and enter the volume in the new metafield field. To display it on your product page, edit your product.liquid or product template and insert the metafield using Liquid code like this:

 

 

 

<p>Volume: {{ product.metafields.custom.volume }} ml</p>

 


 If this fixed your issue, likes and accepting as a solution are highly appreciated
|  Build an online presence with our custom-built Shopify Theme: EcomifyTheme
|  Check out our reviews: Trustpilot Reviews
|  We are Shopify Partners: EcomGraduates Shopify Partner



View solution in original post

Replies 2 (2)

EcomGraduates
Shopify Partner
826 70 120

This is an accepted solution.

You can add a Volume field to your product information section using Shopify Metafields. In your Shopify admin, go to Settings > Custom Data > Products, then add a new Metafield for volume. Set it as a number field and choose the right unit 

 

Once you’ve created it, go to any product and enter the volume in the new metafield field. To display it on your product page, edit your product.liquid or product template and insert the metafield using Liquid code like this:

 

 

 

<p>Volume: {{ product.metafields.custom.volume }} ml</p>

 


 If this fixed your issue, likes and accepting as a solution are highly appreciated
|  Build an online presence with our custom-built Shopify Theme: EcomifyTheme
|  Check out our reviews: Trustpilot Reviews
|  We are Shopify Partners: EcomGraduates Shopify Partner



Iozols
Tourist
8 0 1

thanks so much!