VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: jimv on April 01, 2017, 20:10:38 PM

Title: Hide log out from Shopper info
Post by: jimv on April 01, 2017, 20:10:38 PM
Hello,

I wish to remove the "Γεια σου jimmy  Αποσύνδεση" (log out) form from the shopper edit information page. I have been searching for the file with ssh but with no luck. Can someone help?

Thanks in advance for your time.

Virtuemart 3.2.0
Joomla 3.6.5
Title: Re: Hide log out from Shopper info
Post by: jenkinhill on April 01, 2017, 20:41:36 PM
CSS override is the way to do this. Use Firebug to work it out.

With the default VM templates it would be something like:
#form-login {
display: none;
}

Your template may differ, or you may need to add #cart-view to make the descriptor more specific.
Title: Re: Hide log out from Shopper info
Post by: jimv on April 01, 2017, 21:11:58 PM
Thank you very much.