Hello, I have problem to show data from Field Groups in MB View.
Field Group name is Tickets fields, it has just one field ticket ( type is group) and it's Cloneable field.
Inside of this field group I have subfileds with id's ( team_1, team_2, prediction, betting_odd, datetime_game)
In Views I created Ticket view and I used Insert Field button to get all data. this is the code:
<h3>TEST</h3>
{% for clone in post.ticket %}
{{ clone.team_1 }}
<br>
{{ clone.team_2 }}
<br>
{{ clone.prediction }}
<br>
{{ clone.betting_odd }}
<br>
{{ clone.datetime_game | date( 'F j, Y' ) }}
{% endfor %}
For some reason I can see anything in front, I tried with shorcode, and with single page view, but all what I can see is h3 test...
Anybody knows what could be the problem ?
Thanks