Quote:
Originally Posted by sportruck
You've got a nested if statement. You need to put your {else} after a {/if} to have it execute in-line with the first if statement.
Example:
Code:
{if something}do this
{if another thing}
{/if}
{else} do this thing instead{/if}
|
Ok thank you, could you show me how to rearrange my code. I see the example, but still can't figure out my exact code I posted.