i\'ve read many Q/A\'s here during the last few days, but unfortunately none of them solved my issue.
I\'m trying to fetch product attributes and display them on the
If anyone else just wants to simply output the attribute value as text, replace the $html .= line with this:
$html .= strip_tags(get_the_term_list($product->get_id(), $taxonomy));
@helgatheviking There must be a more elegant way than this! :)