Announcement

Collapse
No announcement yet.

Editing the Receipt Page

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

    Editing the Receipt Page

    I would like to remove the details of my name and position in the Company (Director) from the address shown at the top of the receipt page displayed on completion of an order so that just the Company name and address is shown.

    Do I need to edit some file? I have looked at Act_ReceiptPrimary.html, but that doesn't hold any clues.

    Regards,

    David

    #2
    The details shown in the receipt are gained from the details you place within the View | Business Settings | Contacts tab area.

    This is positioned within the Act_Order04 template of the Template Manager via these elements:

    <TABLE BORDER=0 ALIGN=RIGHT CELLPADDING=2>
    <TR>
    <TD VALIGN="TOP" CLASS="actxsmall">
    NETQUOTEVAR:COMPANYCONTACTNAME
    NETQUOTEVAR:COMPANYCONTACTTITLE
    NETQUOTEVAR:COMPANYNAME
    NETQUOTEVAR:COMPANYSTREETADDRESS1
    NETQUOTEVAR:COMPANYSTREETADDRESS2
    NETQUOTEVAR:COMPANYSTREETADDRESS3
    NETQUOTEVAR:COMPANYSTREETADDRESS4
    NETQUOTEVAR:COMPANYPOSTCODE
    NETQUOTEVAR:COMPANYCOUNTRY
    </TD>
    <TD VALIGN="TOP" CLASS="actxsmall">
    NETQUOTEVAR:COMPANYPHONE
    NETQUOTEVAR:COMPANYFAX
    NETQUOTEVAR:COMPANYEMAIL
    NETQUOTEVAR:COMPANYURL
    </TD>
    </TR>
    </TABLE>

    If it is your plan to remove the NETQUOTEVAR:COMPANYCONTACTTITLE from being visible then you would do a commnet like:

    <!-- NETQUOTEVAR:COMPANYCONTACTTITLE -->

    Hope that helps.

    Comment


      #3
      Thanks that's just what I needed.

      D

      Comment

      Working...
      X