Announcement

Collapse
No announcement yet.

Payment Error messages

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

    Payment Error messages

    Can anyone help me find the html pages in site 1 for the error messages caused by credit card details being invalid
    I want to be able to move this cell ...is there html for these messages or cell tables.
    help would be appreciated
    ThX

    #2
    Hi Dan,

    To move this error message, open Act_Order02.html in Notepad ('Advanced' menu, 'Template Manager', 'Ordering' tab (in the grey button view(click on Change View, if you do not see any tabs)). The following line is the html that refers to all error messages that display on that screen.

    '<FONT FACE="ARIAL" SIZE="2">NETQUOTEVAR:ERROR</FONT>'.
    ********************
    Tracey
    SellerDeck

    Comment


      #3
      Thanks

      thanks for that well appreciated
      thank god for these forums

      Comment


        #4
        good question.

        but the NETQUOTEVAR:ERROR includes html for the table inside it - does anyone know which template or file this html resides in?

        Adrian

        Comment


          #5
          You need to edit the file called 'Actinic.pm' in your site folder to do this.

          Open this file in Notepad and search for 'GroomError'. In the code within this routine, you will see some HTML formatting code:

          $sError = "<TABLE CELLPADDING=\"10\" WIDTH=\"550\" BORDER=\"1\" BGCOLOR=\"$$::g_pSetupBlob{FORM_BACKGROUND_COLOR}\">" .
          "<TR><TD><BIG> $sError</BIG></TD></TR></TABLE><P><HR>";

          Edit the <BIG> tags and replace them with <FONT> or <SPAN> tags to improve the appearance of these messages.

          Actinic is not able to provide any detailed support for script changes made. If you find that there is a problem, an original copy of the script can be found within the 'Original' folder in your installation. Copy this into your site folder.

          Comment

          Working...
          X