Displaying Page Attribute with One or Multiple values
Permalink<?php if (count($c->getCollectionAttributeValue('bow_neighborhood')) == 1) { ?> Single Value Display <?php } ?>
and this code for the multiple value display:
<?php if (count($c->getCollectionAttributeValue('bow_neighborhood')) > 1) { ?> Multiple Value Display <?php } ?>
However, the count always equals one, even if an attribute has multiple values. I feel like I'm missing something somewhere, but I can't figure out what it is.