KimS Posted November 1, 2015 Share Posted November 1, 2015 i am trying to make order link included currency {php}{if $smarty.session.Language=='english'}<a href="../cart.php?gid=64¤cy=5">Order Now</a>{/if}{/php} but dont show on page ?? 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted November 1, 2015 Share Posted November 1, 2015 there are at least two issues with this... firstly, it's not php code so you don't need the {php} tags... secondly, at startup, I don't believe the language is available in the session, only after the language is chosen does it appear in the session... {if $language eq 'english'}<a href="../cart.php?gid=64¤cy=5">Order Now</a>{/if} the above code should work... 0 Quote Link to comment Share on other sites More sharing options...
KimS Posted November 1, 2015 Author Share Posted November 1, 2015 Thanks that did the job 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.