PDA

View Full Version : Text Colour


carlos
06-Aug-2004, 10:55 AM
On our site http://www.victoriafurnitureco.co.uk some sections of the text in the view cart and check out pages are white and i can't figure out why.

Can anyone help.

Thankyou.

carlos
06-Aug-2004, 11:17 AM
Sorry it is http://www.thevictoriafurnitureco.co.uk

Thanks

cdicken
09-Aug-2004, 08:34 AM
There are two areas of white text - the subtotal and the link for the product name.

To fix the subtotal, look in Act_ShoppingCartXML.html and check your HTML around NETQUOTEVAR:SUBTOTAL.

For the link for the product name, this comes from a Perl script called ActinicOrder.pm. You need to open this in Notepad and do the following:

Search for 'sub GenerateShoppingCartLines'.

Then search for HREF.

You should see...

my $sProdLinkFormat = "<A HREF=\"$::g_sSearchScript?PRODREF=%s&NOLOGIN=1\">%s</A>";

Comment out the line with # right at the beginning.

At the same point insert the line...

my $sProdLinkFormat = "<!-- %s -->%s";

The first %s is just the internal product ID used as a target to the
search script. Do not remove it or the Product ID will appear as the
Product Name.

The code should now read:

# my $sProdLinkFormat = "<A HREF=\"$::g_sSearchScript?PRODREF=%s&NOLOGIN=1\">%s</A>";
my $sProdLinkFormat = "<!-- %s -->%s";

Save the template and upload.