Nullified Posted July 25, 2011 Share Posted July 25, 2011 I would like to remove the $breadcrumbnav if the user is on the orderform pages. How would I do this? {if $breadcrumbnav}<p style="margin: 10px 30px 10px 30px;">{$LANG.globalyouarehere}: {$breadcrumbnav}</p>{/if} 0 Quote Link to comment Share on other sites More sharing options...
robb3369 Posted July 25, 2011 Share Posted July 25, 2011 Try something like: {if $breadcrumbnav and $filename neq "cart"} <p style="margin: 10px 30px 10px 30px;">{$LANG.globalyouarehere}: {$breadcrumbnav}</p> {/if} 0 Quote Link to comment Share on other sites More sharing options...
mojahed Posted July 25, 2011 Share Posted July 25, 2011 This code should do what you want. {if $pagetitle != 'Shopping Cart'} {else} {if $breadcrumbnav}<p style="margin: 10px 30px 10px 30px;">{$LANG.globalyouarehere}: {$breadcrumbnav}</p>{/if} {/if} 0 Quote Link to comment Share on other sites More sharing options...
Nullified Posted July 25, 2011 Author Share Posted July 25, 2011 Try something like: {if $breadcrumbnav and $filename neq "cart"} <p style="margin: 10px 30px 10px 30px;">{$LANG.globalyouarehere}: {$breadcrumbnav}</p> {/if} Wouldn't it have to be: {if $breadcrumbnav and ($filename neq "cart")} <p style="margin: 10px 30px 10px 30px;">{$LANG.globalyouarehere}: {$breadcrumbnav}</p> {/if} This code should do what you want. {if $pagetitle != 'Shopping Cart'} {else} {if $breadcrumbnav}<p style="margin: 10px 30px 10px 30px;">{$LANG.globalyouarehere}: {$breadcrumbnav}</p>{/if} {/if} Is this going to work for all shopping cart pages? Does pagetitle not change on any of the orderform pages? 0 Quote Link to comment Share on other sites More sharing options...
mojahed Posted July 25, 2011 Share Posted July 25, 2011 Wouldn't it have to be:{if $breadcrumbnav and ($filename neq "cart")} <p style="margin: 10px 30px 10px 30px;">{$LANG.globalyouarehere}: {$breadcrumbnav}</p> {/if} Is this going to work for all shopping cart pages? Does pagetitle not change on any of the orderform pages? Yes it will work for all shopping cart pages unless you change the shopping cart page title in the Language file 0 Quote Link to comment Share on other sites More sharing options...
Nullified Posted July 25, 2011 Author Share Posted July 25, 2011 Thank You, this worked! {if $breadcrumbnav and ($filename neq "cart")} <p style="margin: 10px 30px 10px 30px;">{$LANG.globalyouarehere}: {$breadcrumbnav}</p> {/if} 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.