Announcement

Collapse
No announcement yet.

Checkout questions for logged in customers only

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Checkout questions for logged in customers only

    I've defined a 'General Information' question on checkout using Design | Text | Web Site (cont) | General Information - is there a way to make this question appear only for logged-in customers?

    On a separate question, is there a facility for logged in customers to 'log out' so that a different user could log in from the same session?

    Thanks for any help!

    #2
    It's a bit clunky but this is how to hide something from Retail customers:

    Code:
    <Actinic:NOTINB2B><!--</Actinic:NOTINB2B>
    My Question
    <Actinic:NOTINB2B>--></Actinic:NOTINB2B>
    There is a logout variable

    Code:
    <actinic:variable name="LogoutSimple" />
    
    or
    
    <a href="<Actinic:Variable Name="WebSiteURL"/>cgi-bin/bb000001.pl?ACTION=LOGOUT">Logout</a>
    If you want to hide the login link for people who are logged in, use this:

    Code:
    <Actinic:NOTINB2B><a href="<actinic:variable name="LoginPageURL" />" target="_self"><actinic:variable name="LoginText" /></a></Actinic:NOTINB2B>

    Comment


      #3
      Many thanks Jonathan, will give that a go!

      Richard

      Comment

      Working...
      X