Hi,
I have a template like this:
{embed="embeds/global_header"}
{embed="banners/home-banners"}
{exp:cat_search:do_cat_search}
<div id="main">
<div id="sub-left">
{embed="embeds/result-embed" cats={exp:cat_search:do_cat_search}}
</div>
<div id="sub-right">
</div>
</div>
{embed="embeds/global_footer"}
{embed="embeds/global_footer_end"}Basically, i have created a module that outputs some category id’s in pipe delimited format.
What i want to do is to feed that to a query module query, and run that query. However, i’m running into that problem where the parse order means that the module output doesn’t get parsed in time for the query module to use it. So, i’m trying an embed and passing the modules output to the embed. But that’s not working either, i’m suffering from the same issue as before.
I’ve simply forgotten what i need to do to resolve this, i knew it once, but i’ve forgotten :(
Thanks!