PDA

View Full Version : Payment Error messages


Dan
19-Jan-2003, 10:30 PM
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:confused:

TraceyG
20-Jan-2003, 03:38 PM
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>'.

Dan
20-Jan-2003, 08:51 PM
thanks for that well appreciated
thank god for these forums:)

adrians
23-Jan-2003, 01:21 PM
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

cdicken
24-Jan-2003, 04:17 PM
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.