I want to display "Welcome (customer name" throughout site if customer has an account and is logged in. It is kind of working...it of course works on the account pages and displays Welcome and name, but on categories,products, pages etc... it is just displaying "Welcome". Below is what I have tried conditionals
<mvt:if expr="basket:cust_id">Welcome &mvte:addressbook:address_ship:fname;!<mvt:else ></mvt:if>
<mvt:if expr="g.basket:cust_id GT 0">Welcome &mvte:addressbook:address_ship:fname;!<mvt:else ></mvt:if>
Any help is greatly appreciated.
<mvt:if expr="basket:cust_id">Welcome &mvte:addressbook:address_ship:fname;!<mvt:else ></mvt:if>
<mvt:if expr="g.basket:cust_id GT 0">Welcome &mvte:addressbook:address_ship:fname;!<mvt:else ></mvt:if>
Any help is greatly appreciated.
Comment