Announcement

Collapse
No announcement yet.

Changes to name and address fields

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

    Changes to name and address fields

    To ensure that the data we collect online can be used effectively in merge/purge for mailing activity I have used job title and company name fields for surname and house name/number. However, on email confirmations and the order receipt they print incorrectly. I.E.

    Mrs D
    Kempster
    Address etc

    and email confirmation Dear Mrs D,

    I assume I need to use the netquotevar refs to put the data where I want it in these relevant forms. Where do I find what the correct netquotevar ref is?

    Many thanks

    Donna
    Donna

    Chief bunting supplier to Take That!

    #2
    Hi Donna,

    I am checking with my development team for any work around for it.
    [FONT=Verdana][COLOR=Navy]
    Regards,
    Karthik

    Comment


      #3
      Hello Donna,

      Please browse to C:\Program Files\Actinic v7\Sites\Site1, open 'orderScript.pl' in a note pad and follow the steps below:

      Step1


      Search for '$sInvoiceName', you should see...

      my ($sInvoiceName);
      undef $sTemp;
      if ((length $::g_BillContact{'NAME'}) > 0)
      {
      $sTemp = $::g_BillContact{'SALUTATION'} . " " .
      $::g_BillContact{'NAME'}; @Response = ACTINIC::EncodeText($sTemp);
      $sInvoiceName .= $Response[1] . " ";
      }

      In the above, replace...

      $sInvoiceName .= $Response[1] . "<BR>\n";

      with...

      $sInvoiceName .= $Response[1] . "&nbsp;";


      Step2

      Search for '$sDeliveryName', you should see...

      if ((length $::g_ShipContact{'NAME'}) > 0)
      {
      $sTemp = $::g_ShipContact{'SALUTATION'} . " " .
      $::g_ShipContact{'NAME'}; @Response = ACTINIC::EncodeText($sTemp);
      $sDeliveryName .= $Response[1] . "<BR>\n";
      }

      In the above, replace...

      $sDeliveryName .= $Response[1] . "<BR>\n";

      with...

      $sDeliveryName .= $Response[1] . "&nbsp;";

      Save and exit. upload the site.
      [FONT=Verdana][COLOR=Navy]
      Regards,
      Karthik

      Comment

      Working...
      X