OK. So my theme has an area where you can create Tabs on the Product Page.
The First Tab Contains the Product Description.
I would like to create a tab that displays the product specs. Since each product will be different I’d like to make a call to the variant options.
So For Example, let’s say Variant Option 1 is Color, Variant Option 2 is Length, and Variant Option 3 is Drop Weight. I’d like to create an HTML Table that holds this information:
| Length: | {% variant.option1 %} |
| - | - |
| Drop Weight: | {% variant.option3 %} |
| Wood Species: | Hard Maple |
| Colorway: | {% variant.option3 %} |
However, when I do this I get the following error:
Setting ‘html’ can’t include Liquid syntax (‘{{’, ‘}}’, ‘{%’ or ‘%}’) without valid dynamic sources.
So how do I define a valid dynamic source?
Any help would be greatly appreciated.