I have a template called product_list which I want to embed in various product pages, so I have downloaded and installed Allow EE Code
in my channel I have
{exp:allow_eecode}
{embed="embeds/product_list"}
{/exp:allow_eecode}the template product list is this
<table id="rounded-corner">
<thead>
<tr>
<th scope="col" class="rounded-topleft">LED Display Model</th>
<th scope="col" class="rounded">Colour</th>
<th scope="col" class="rounded">Lines of Text</th>
<th scope="col" class="rounded">Typical Chars Per Line</th>
<th scope="col" class="rounded">Brightness</th>
<th scope="col" class="rounded-topright">Pixel Matrix (HxW)</th>
</tr>
</thead>
{exp:channel:entries channel="products_list" limit="10" textlines="1"}
<tr class="{switch='even|odd'}">
<td>{Model}</td>
<td>{Colour}</td>
<td>{textlines}</td>
<td>{Chars_Line}</td>
<td>{Brightness}</td>
<td>{pixel_h} x {pixel_w}</td>
</tr>
{paginate}
<div class="paginate">
<span class="pagecount">Page {current_page} of {total_pages} pages</span> {pagination_links}
</div>
{/paginate}
{/exp:channel:entries}
</table>if I call the template directly from another template, it works.
If I use the call from the channel, I only get the <THEAD> section, nothing else appears
What am I doing wrong?