PDA

View Full Version : images not appearing on checkout


BitChar-G UK
13-Jan-2003, 04:25 PM
Hi,
We seem to have a wee problem with our online store
http://www.action-pact.co.uk/acatalog

When I go to the checkout stage, none of the header images or left nav images appear.

I've uploaded them to the cgi-bin but they are not appearing.. Am I missing anything?

Cheers for any help you can offer.

Regards,
Martin

ditch
13-Jan-2003, 11:28 PM
Simple solution mate.

Open the Act_primary.html template. Insert the following code into the <head> section <BASE HREF="http://www.action-pact.co.uk/acatalog/">

That should bring your images back

good luck

NormanRouxel
14-Jan-2003, 01:37 AM
Your JavaScript isn't working either (the mouseover on the navigation icons for example).

The bit that's missing from your Act_Primary is

<Actinic:BASEHREF VALUE="NETQUOTEVAR:BASEHREF"/>

Also check your network settings (Advanced / Network Setup) and make sure that your Catalog URL ends in /acatalog/

i.e. http://www.action-pact.co.uk/acatalog/

The answer from ditch above regarding hard coding the BASE HREF may work but that field isn't really meant to be hard coded as it should only be included on the pages generated by the scripts and they use a combibation of the Catalog RUL and the <Actinic:BASEHREF...> tag to create it when it is needed.

Hard coding it may also break your site when you later update Actinic (and have forgotton what you did in the past) as this is an area under constant change due to the need to deal with present and future firewall issues.

Norman

BitChar-G UK
14-Jan-2003, 07:45 AM
Hi guys,
Thanks very much for your help
placed: <Actinic:BASEHREF VALUE="NETQUOTEVAR:BASEHREF"/>

in the page and everything is working...

But like Norman mentioned, the Javascript rollovers aren't working - does anyone know where the problem could be for that?

Also, there is a very small gap between the header and the left navigation. On the main site - I've got rid of this, but on the catalog - no matter what I do, I can't shift up - any ideas most welcome.

Thanks again,
Martin

NormanRouxel
14-Jan-2003, 11:08 AM
Check that the lines

<SCRIPT LANGUAGE="JavaScript" SRC="actiniccore.js" TYPE="text/javascript"></SCRIPT>
<SCRIPT LANGUAGE="JavaScript" SRC="actinicextras.js" TYPE="text/javascript"></SCRIPT>

Didn't go walkabout from the head section of Act_Primary.html (and any alternative Primary templates you might be using).

Norman