Ok, say I have a page with the url: URL.com/checkout/completed
, how can I setup an if statemet to perform:
<if "This page has url of checkout/completed">
No Content
<else>
Content
</if>
Is there a way? A simple way, my php/smarty-fu lacks.. A lot.
EDIT:
{if $smarty.server.REDIRECT_URL eq 'http://www.euroworker.no/checkout/completed'}
{else}
<div id="scrollwrap">
<div class="scrollFieldContent">
Scrolled content
</div>
<div class="probetalings">Velg betalingsmåte</div>
{include file="/choosePaymentMethod.tpl"}
</div>
{/if}
Thanks.