How to Add / Create parameters tab into product page?

Before, we were using a different solution than Shopify and we were able to write parameters like (size, dimensions, color and etc. etc.) of the product inside of product settings in the fields.

Then it would save into a parameters tab that looked like something like this:

It was always placed in the product description.

My question is: Is there any way / app that can do this? Maybe with an HTML template that would be always copied into product description - but to me, that sounds too time-consuming.

Please, do let me know if there’s any way to do this - I’m willing to hire someone as well.

Thanks

Hello @Petoya ,

We can do same with metafiles in Shopify. First we have to enable create metafields for products.
And after that have to call these metafields with in code.
In this way admin have to just input the values in predefined setting columns.
You can shoot me an email for further discussions.

Thanks

Thank you! I sent you a message on Skype if that’s fine

Tom

Hi @Petoya ,

Will it show all variants of the product?

You can try with this code:

{%- for product_option in product.options_with_values -%} {%- endfor -%}
{{ product_option.name }}

{% for value in product_option.values %}{{ value }}{% unless forloop.last == true %}, {% endunless %}{% endfor %}

Or you can contact by email: namphan992@gmail.com

I will check it.