Hi,
I want to put my my size metafield product.metafields.custom.size.value on the same line as product price on my product page only, not any other location. What is the best way to put it, so it’s on the same line next to each other? I am using Dawn theme.
Thanks
Hi,
Please share your store URL and if your store is password protected then also provide password too.
Thank you.
You can do that by adding you code in store admin > Sale channels > Online store > Edit code > Snippets > price.liquid
Add you code below element, replace // You metafield code here with your code
{% if template.name contains 'product' %}
// Your metafield code here
{% endif %}
And then add this CSS code in Assets > base. css
.price__container {
display: inline-flex !important;
justify-content: space-between;
width: 100%;
}
Thanks this worked, I just changed the width a bit so the spacing looked better and changed it so it was before the price. Thanks!