Hi,
When users arrive at my store, www.ablecommercesitefinity.com/login.aspx, I notice that the account tab (top right) appears. How can I hide this tab, if the user is not logged in? I cannot find the master page or the control for that navigation control anywhere. Is there a way to add tabs to it?
Hide Account button
Re: Hide Account button
Hi,
OK, I found the files:
This is for the whole store
~\App_Data\Scriptlets\Default\Header\Standard Header.htm
This is for the checkout
~\App_Data\Scriptlets\Default\Header\Checkout Header.htm
Do you agree this is the best way to hide buttons:
OK, I found the files:
This is for the whole store
~\App_Data\Scriptlets\Default\Header\Standard Header.htm
This is for the checkout
~\App_Data\Scriptlets\Default\Header\Checkout Header.htm
Do you agree this is the best way to hide buttons:
Code: Select all
#if($customer.IsAnonymous == false)
<a href="~/Members/MyAccount.aspx" class="acct">Account</a>
<a href="~/Members/MyWishlist.aspx" class="wishlist">Wishlist</a>
#end
Re: Hide Account button
Yes its OK.