I’m trying to do something like:
{if segment_2 ==''}
do thing 1
{/if}
{if segment_2 !=''}
{complex conditional}
{embed}
{/if}
{/if}Even when segment_2 is blank, the embed tag is processing per the debugging tool. But according to the documentation that should only happen if I’m using complex conditionals, right? I need to stop that because the performance hit is messing up our load time and in some cases running us out of memory.
Thanks for any help!