Hello,
I am working on combining the Cart and Authentication sideblocks and I am stuck. So far I have got most of the Authentication items into the bottom of the cart (wish list, modify profile etc...) The problem is that when you login, in the Authentication box you get the "Mike is Logged in" "Log out" text, and I want to add that to the cart section. But I am not sure what to do....Do I edit this from home.tpl
Code:
{if $login eq "" }
{ include file="auth.tpl" }
{/if}
{if $login eq "" }
{ include file="news.tpl" }
{else}
{ include file="authbox.tpl" }
{/if}
and then add it to the menu_cart.tpl?
Thanks so much...