Ok so I’ve got the descriptions showing by placing this code below the dropdown selections
<?php
foreach ( $terms as $term ) {
$term_desc = strtolower($term->description);
echo "<div class='plans-description'>$term_desc</div><br />";
}?>
Unfortunately ALL of the descriptions are showing up for each attribute variation.
Can anybody help me progress with this and make it only show the description of the selected variation?