How to make a login/logout functionality in opencart
<?php if (!$logged) { ?>
<a class="tr_login" href="<?php echo str_replace('&', '&', $login); ?>" title="<?php echo $text_login; ?>"><?php echo $text_login; ?></a>
<?php } else { ?>
<a class="tr_logout" href="<?php echo str_replace('&', '&', $logout); ?>" title="<?php echo $text_logout; ?>"><?php echo $text_logout; ?></a>
<?php } ?>
Thats it.... Enjoy Chandresh rana's Coding... :)
2 comments:
Hello,
Thanks for this, but where do I add it in my theme files?
You can put it into header.tpl or footer.tpl aswell.
Post a Comment