Hi,
Yes thats the right page, just click the ‘Configure Terms‘ blue link in the last column – that will take you to the taxonomy details page for each attribute.
The template page in question is, product-attributes.php
As you can see from the screenshots i have customised mine a little by outputting them in an unordered-list. The key variables are:
$product_attribute['label']
– which is the attribute title in the left table column and
$product_attribute['value']
which is a comma-separated string of each value which i split with PHP explode() and output via a for each loop. So i would have thought there would be a variable in the main product array called, $product_attribute['description']
or similar but, apparently, not.
Doing some research i think its because Simple product types dont allow this but if i were to change product types to ‘Grouped’ or ‘Variable’ then ‘description’ is available in the $product array – ill need to look into it further im still learning woocommerce …
cheeers