Payment method: P.O. ONLY if a wholesale user? Possible?
Payment method: P.O. ONLY if a wholesale user? Possible?
Is it possible to show the PO method only if a shopper has been set up as a wholesale client, and has signed in?
Re: Payment method: P.O. ONLY if a wholesale user? Possible?
Edit your Checkout/PaymentForms/PurchaseOrder.ascx file and put following line of code in very start of Page_Load method
Code: Select all
this.Visible = (!Token.Instance.User.IsAnonymous && Token.Instance.User.IsInGroup(wholesaleGroupId));
Re: Payment method: P.O. ONLY if a wholesale user? Possible?
Cant you do this from the admin? Click on payment method, click selected groups and click the group you want?
Re: Payment method: P.O. ONLY if a wholesale user? Possible?

Re: Payment method: P.O. ONLY if a wholesale user? Possible?
Thanks Mazhar for the fast response and fix, I'll save that if needed.
kastnerd, looks like that did it... the simple way.
kastnerd, looks like that did it... the simple way.