View Single Post
  #2  
Old 09-05-2005, 07:41 AM
  Dongan's Avatar 
Dongan Dongan is offline
 

X-Wizard
  
Join Date: Jul 2005
Location: www.mercuryminds.com
Posts: 1,531
 

Default

{if $smarty.get.mode eq "checkout" and $checkout_step ne $total_checkout_steps}
text here
{/if}

If you want to display at the last step then, it would be

{if $smarty.get.mode eq "checkout" and $checkout_step eq $total_checkout_steps}
text here
{/if}
Reply With Quote