Announcement

Collapse
No announcement yet.

Different terms for logged in customers

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

    Different terms for logged in customers

    Hi all,

    Is it possible to edit the terms and conditions so that they are different for logged in trade customers. I have tried
    <Actinic:NOTINB2B><!--</Actinic:NOTINB2B>Different text<Actinic:NOTINB2B>--></Actinic:NOTINB2B> in the business settings>terms and conditions> but the code just shows in the web page and is the same for both logged and unlogged cutomers.

    Any help would be welcome.

    Jane
    Jane Davies
    www.asplash.com

    #2
    Hi Jane

    The advance user guide shows you how to bounce unregistered customer out of a section. You might want to setup a section for Terms and Condition, then using the code on Page 61, you can bounce out unregistered customers from this section.

    Kind Regards
    Nadeem Rasool
    SellerDeck Development

    Comment


      #3
      Thank you, that works well
      Jane Davies
      www.asplash.com

      Comment


        #4
        NOTINB2B again

        Sorry, still not got the hang of this. I am trying to hide the contact form on the Act_ContactUs.html page from none logged in users, but add visible text. I now have the text visible to logged in and not logged in customers, but the form is hidden from both too.

        This is the code I am using - please can you tell me what is going wrong.

        <!-- Act_ContactUs HTML begin --> <Actinic:VALIDATIONERROR/> Our Contact details:<br> Name<br>Address <br>
        Phone 01234 123123<br>
        FAX 01234 123123<br>
        EMAIL <a href="mailto:jane@asplash.com">jane@asplash.com</a>

        <Actinic:NOTINB2B><!--</Actinic:NOTINB2B>
        !!<<table cellpadding="3" cellspacing="0">
        <tr>
        <td width="15">&nbsp;</td>
        <td colspan="2"><strong>NETQUOTEVAR:FORMHEADER</strong><br>
        <br> </td>
        </tr>
        <tr>
        <td>&nbsp;</td>
        <td>NETQUOTEVAR:NAME</td>
        <td> <input type="TEXT" name="Name" size="50" maxsize="125" value="NETQUOTEVAR:NAMEVALUE">
        </td>
        </tr>
        <tr>
        <td>&nbsp;</td>
        <td>NETQUOTEVAR:SUBJECT</td>
        <td> <input type="TEXT" name="Subject" size="50" maxsize="125" value="NETQUOTEVAR:SUBJECTVALUE">
        </td>
        </tr>
        <tr>
        <td>&nbsp;</td>
        <td>NETQUOTEVAR:EMAIL</td>
        <td> <input type="TEXT" name="EmailAddress" size="50" maxsize="125" value="NETQUOTEVAR:EMAILVALUE">
        </td>
        </tr>
        <tr>
        <td valign="top">&nbsp;</td>
        <td valign="top">NETQUOTEVAR:MESSAGE</td>
        <td><textarea type="TEXT" rows="10" cols="45" name="Message">NETQUOTEVAR:MESSAGEVALUE</textarea></td>
        </tr>
        <tr>
        <td valign="top">&nbsp;</td>
        <td valign="top">&nbsp;</td>
        <td><input type="SUBMIT" name="ACTION" value="NETQUOTEVAR:SENDBUTTON"> </td>
        </tr>
        <tr>
        <td valign="top">&nbsp;</td>
        <td colspan="2" valign="top">NETQUOTEVAR:REQUIREDFIELDS NETQUOTEVAR:HIGHLIGHTED.</td>
        </tr>
        </table>>!!
        <Actinic:NOTINB2B>-->
        </Actinic:NOTINB2B>
        <!-- Act_ContactUs HTML ends -->
        Jane Davies
        www.asplash.com

        Comment


          #5
          Hi Jane

          Sorry for the delay, one thing that is strange from the coding provided above, there seems to be commented out. Please remove that

          <!--</Actinic:NOTINB2B>
          Also you have:
          !!<<table cellpadding="3" cellspacing="0">
          "!!<" is an html expression that should be in the full description of a product, not in the template. Try removing that
          and remove
          <Actinic:NOTINB2B>-->
          Kind Regards
          Nadeem Rasool
          SellerDeck Development

          Comment


            #6
            Thank you for this - I have made the changes as suggested but the result is that the form is hidden from the logged in user, rather than from a retail customer - the opposite is what the client would like. Is this possible?
            Jane Davies
            www.asplash.com

            Comment


              #7
              Hi Jane

              I have been working on this, since you last post and these tags don't seem to work on the contact us page. When investigating this, the issue i made a mistake earlier, it seems that the commented out line for the b2b message cannot be processed by the perlscript, hence the reason for not working. This is the same with order stages, basically anything that uses perl. You could do the following:

              Using the tags in the primary template you could use it to hide the link to the mailform eg:
              Code:
              <Actinic:NOTINB2B><!--</Actinic:NOTINB2B><a href="http://www.domain.com/cgi-bin/mf000001.pl?ACTION=SHOWFORM"><img src="login.gif"></a>, <Actinic:NOTINB2B>--></Actinic:NOTINB2B>
              This will just show the image for the logged in customer. Then for the unregistered customer you can create your own custom mailform with a straight link to it. I've used NMS Mailform in the past, and it very good: http://nms-cgi.sourceforge.net/

              Kind Regards
              Nadeem Rasool
              SellerDeck Development

              Comment

              Working...
              X