Hi all, I’m having some issues with displaying content from my grid channel. Here’s what I’ve got so far,
Channel name is “grid_test”, the channel field group is “content_services_grid” and it’s type is “grid”
It contains two elements, one a text editor field named “blurb_text” and the image field is “blurb_image”
I’m trying to display this content in a vertical row with my framework as such:
{exp:channel:entries channel="grid_test" limit="6"}
<div class="row">
<div class="large-6 columns">
{blurb_text}
</div>
<div class="large-6 columns">
{blurb_image}
</div>
</div>
{/exp:channel:entries}I’m new to EE and I’ve also tried using the following tags displayed in this guide replacing {gallery} with the channel name, group, etc I can think of…
Any help with this would be deeply appreciated so I don’t have to keep making channel fields individually for each published page.