Hi there.
I guess I get into a bug with JA K2 Filter.
I use the component in a lot of areas of my web and i'm trying to filter items with the specific field named as "itunes" in my database. The pre-filter works and it shows only items with that field, but when I try to display the field on the items, i get nothing. Some extra fields work fine, but this one does not. Any help?
I'm using this code:
<?php if($this->item->extraFields->itunes->value): ?>
<a href="https://geo.itunes.apple.com/br/movie/id<?php echo $this->item->extraFields->itunes->value ?>?at=1010lppk&mt=6" target="_blank" style="display:block;float:right; width:140px;height:40px; z-index:9999; background-image:url(https://linkmaker.itunes.apple.com/images/badges/pt-br/badge_itunes-lrg.svg)" title="Assistir <?php echo strstr($this->item->title, '|', true) ?: $this->item->title ?> online no iTunes">
</a>
<?php endif; ?>
Thanks in advance!