I have taken over looking after this website - www.hamradio.co.uk - but there has been a lot of customisation. One problem I have found which I am hoping someone can help me with is:
On most of the products there are Extended Information options. On the top bar of a product there are options to E-Mail friend, Print Product and More Info.
On some of the products the e-mail friend option works and others print product works, but not all of them work all the time and I am getting frustrated trying to work out what is happening.
I don't know if this is something that Actinic produces (which is what it looks like) or if these have to be manually made up.
This is the code in the product layout
And this is the code for the Print Product page (the e-mail friend being similar):
I would really appreciate some help with this to stop me from going insane!
Thanks
Louise
On most of the products there are Extended Information options. On the top bar of a product there are options to E-Mail friend, Print Product and More Info.
On some of the products the e-mail friend option works and others print product works, but not all of them work all the time and I am getting frustrated trying to work out what is happening.
I don't know if this is something that Actinic produces (which is what it looks like) or if these have to be manually made up.
This is the code in the product layout
Code:
<actinic:block if="%3cactinic%3avariable%20name%3d%22IsPopUpPageGenerated%22%20%2f%3e" >
<actinic:variable name="ExtendedInfoPageDesign"/>
</actinic:block>
<actinic:block if="%3cactinic%3avariable%20name%3d%22ExtendedInformationType%22%20%2f%3e%20AND%20%3cactinic%3avariable%20name%3d%22IsPopUpDisplayedByImage%22%20%2f%3e%20OR%20%3cactinic%3avariable%20name%3d%22IsPopUpPageDisplayedByButton%22%20%2f%3e" >
<tr>
<td colspan="2" class="lnks">
<actinic:block if="%3cactinic%3avariable%20name%3d%22PrintThisPage%22%20%2f%3e" >
<actinic:variable name="Email Page" />
<a href="#a<actinic:variable name="ProductID" />" onclick="javascript:mailUp("http://www.hamradio.co.uk/friend.php?num=<actinic:variable name="ProductID" />");">
<img src="emailfriend.gif" alt="E-mail Friend" width="99" height="16">
</a>
</actinic:block>
<actinic:block if="%3cactinic%3avariable%20name%3d%22PrintThisPage%22%20%2f%3e" >
<actinic:variable name="Print Page" />
<a href="#a<actinic:variable name="ProductID" />" onclick="javascript:popUp("print_<actinic:variable name="ProductID" />.html");">
<img src="printproduct.gif" alt="Print Product" width="91" height="16">
</a>
</actinic:block>
<a href="javascript:ShowPopUp('<actinic:variable name="ExtendedInfoPageEncoded"/>','<actinic:variable name="ExtInfoWindowWidth"/>','<actinic:variable name="ExtInfoWindowHeight"/>');"><img src="<actinic:variable name="ExtInfoButtonImageFileName" />" border="0" /></a>
</td>
</tr>
</actinic:block>
Code:
<html><head>
<title>ML&S - <Actinic:Variable Name="ProductName"/> - Print Page</title>
<meta name="ACTINICTITLE" content="NETQUOTEVAR:PAGEHEADER">
<meta HTTP-EQUIV="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="http://www.hamradio.co.uk/web.css">
<script language="JavaScript"> window.print(); </script>
</head><body>
<body bgcolor="#FFFFFF" text="#000000">
<table width="100%" border="0" cellspacing="0" cellpadding="0" height="100%">
<tr><td height="38" valign="top"><table width="100%" height=38 border="0" cellspacing="0" cellpadding="0" bgcolor="000000">
<tr><td><img src="http://www.hamradio.co.uk/images/logo.gif" width="317" height="56"></td></tr>
</table></td></tr>
<tr><td align="center" valign="top"><table width="100%" border="0" cellspacing="3" cellpadding="3">
<tr><td valign=top><table border=0 cellpadding="5" cellspacing="0">
<tr><td valign="top"><strong style="font-size: 16px"><Actinic:Variable Name="ProductName"/></strong></td></tr>
<tr><td align="left" valign="top"><actinic:variable name="ExtendedInformationImage" value="Standard Extended Information Image" /></td></tr>
<tr><td valign="top"></td></tr>
<tr><td valign="top"><actinic:variable name="ProductDescription"/></td></tr>
<actinic:block if="%3cactinic%3avariable%20name%3d%22ExtendedInfoText%22%20%2f%3e" >
<tr><td valign="top"><hr style="color: #FF9900" /><br/><strong style="font-size: 14px">Additional Information:</strong><br/><Actinic:Variable Name="ExtendedInfoText"/></td></tr>
</actinic:block>
<actinic:block if="%3cactinic%3avariable%20name%3d%22RelatedProdsListIsEnabled%22%20%2f%3e" >
<tr><td valign="top"><hr style="color: #FF9900" /><br/><strong style="font-size: 14px">Accessories:</strong><br/><actinic:variable name="ProductRelatedProductsList" /></td></tr>
</actinic:block>
<tr><td valign="top"><hr style="color: #FF9900" /><br/></tr></td>
<tr><td valign="top"><br/><actinic:variable name="PriceListRetail" /></td></tr>
<tr><td valign="top"><br/><a href="javascript:window.close();">Close Window</a></td></tr>
</table></td></tr></table></td></tr></table>
</body></html>
Thanks
Louise
Comment