Announcement

Collapse
No announcement yet.

checkout errors - changing html

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

    checkout errors - changing html

    Have made some great strides in recent weeks, I've become stumped on the error messages in the checkout pages, ie. your credit card is invalid.

    The NETQUOTEVAR:ERROR includes the html for this snippet but I cant locate where this html resides.

    After having found the only similar bit of code in the text options it made no difference to the output files.

    Any suggestions anyone?

    The rest of its looking good though!

    Cheers,

    Ade

    #2
    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