How to Add Weight with Unit
Drive 20-40% of your revenue with Avada
In order to provide you more knowledge about weight_with_unit filter, in today post, I will guide you on how to add weight with unit in Shopify.
How to add weight with unit in Shopify
Weight with unit introduction
As you know about, you can use weight_with-unit
filter to convert it into your store’s weight format or your weight unit that is configured on the variant. In addition, it can work well with the weight_in-unit
attribute as well as weight_with_unit
filter.
How to format product variant’s weight
You can easily format the variant’s weight of the product.
Input
{{ product.variants.first.weight | weight_with_unit }}
Output
24.0 kg
Take note that this unit can be overridden by being passed into filters. This is helpful in case the product variants have their own unit.
Input
{{ variant.weight | weight_with_unit: variant.weight_unit }}
Output
52.9 lb
Conclusion
After reading this post, we hope that you can understand more about weight_with_unit
filter. Also, this review helps you answer well your question on how to add weight with unit in Shopify.