I've been adressing the coding errors on our site and have managed to get it down to just one now. It's within our search results page. I've attached the error as an image as it's abit of a long one! lol.
This is also the code i am using for our search results page:
So if you have any ideas as to finxing this error please let me know. Then i can finally upload without Actinic prompting me!
Cheers FrAz
This is also the code i am using for our search results page:
HTML Code:
<form method="get" action="<actinic:variable name="OnlineScriptURL" value="Search Script URL" />"> <input type="hidden" name="RANDOM" value="<actinic:variable name='Random'/>" /> <actinic:block if="%3cactinic%3avariable%20name%3d%22IsHostMode%22%20%2f%3e"> <!-- Hidden field when in trial mode --> <input type="hidden" name="SHOP" value="<Actinic:Variable Name="HiddenFields"/>" /> </actinic:block> <table border="0" cellpadding="0" width="<actinic:variable name="ACTSTDWIDTH" />" align="center"> <tr> <td> <b><Actinic:Variable Name="SearchResultSummary"/></b><br /> <Actinic:Variable Name="SearchResultContinue"/> </td> </tr> <tr> <td> <actinic:variable name="SearchResultsList" /> </td> </tr> <tr> <td> <b><Actinic:Variable Name="SearchResultSummary"/></b><br /> <Actinic:Variable Name="SearchResultContinue"/> </td> </tr> </table> <hr size="1" /> <input type="hidden" name="PAGE" value="SEARCH" /> <table border="0" cellspacing="0" cellpadding="0" width="<actinic:variable name="ACTSTDWIDTH" />" > <tr> <td colspan="2" valign="top"> <Actinic:Variable Name="SearchPrompt"/> <Actinic:Variable Name="RetailOnlyWarning"/> <br /><br /> </td> </tr> <tr> <td valign="top" align="center"> <table border="0" cellspacing="0" cellpadding="3"> <tr> <td valign="top"> <b><Actinic:Variable Name="SearchString"/></b><br /> <input type="text" name="SS" size="40" /> <br /> <Actinic:Variable Name="SearchCombine"/> <input type="radio" name="TB" checked="checked" value="A" /> <Actinic:Variable Name="SearchAndPrompt"/> <input type="radio" name="TB" value="O" /> <Actinic:Variable Name="SearchOrPrompt"/> <Actinic:Variable Name="SearchCombineText2"/> <script language="javascript" type="text/javascript"> <!-- for (nIndex = 0; nIndex < document.forms.length; nIndex++) { if (document.forms[nIndex] && document.forms[nIndex].SS) { document.forms[nIndex].SS.focus(); } } // --> </script> </td> <td valign="top"> <actinic:block if="%3cactinic%3avariable%20name%3d%22PriceSearchIsAllowed%22%20%2f%3e"> <b><Actinic:Variable Name="SearchPriceRangeLabel"/></b> <br /> <actinic:variable name="SearchPriceBandList" /> </actinic:block> </td> </tr> <actinic:variable name="SearchablePropertyList" /> <actinic:block if="%3cactinic%3avariable%20name%3d%22IsSearchablePropertiesCombinedWithAnd%22%20%2f%3e" /> <input type="hidden" name="GB" value="A" /> </actinic:block> <actinic:block if="%3cactinic%3avariable%20name%3d%22IsSearchablePropertiesCombinedWithOr%22%20%2f%3e" /> <input type="hidden" name="GB" value="O" /> </actinic:block> <actinic:block if="%3cactinic%3avariable%20name%3d%22SearchBySectionsUsed%22%20%2f%3e" /> <tr> <td colspan="2" valign="bottom"> <b><Actinic:Variable Name="SearchControlLabel"/></b><br /> <select name="SX"> <actinic:block if="%3cactinic%3avariable%20name%3d%22SetupSearchAllSections%22%20%2f%3e%20%3d%3d%20False"> <option value="0"> </option> </actinic:block> <actinic:variable name="SearchSectionList" /> </select> </td> </tr> </actinic:block> <tr> <td colspan="2"valign="bottom"> <input type="submit" name="ACTION" value="<Actinic:Variable Name="SearchLabel"/>" /> </td> </tr> </table> </td> </tr> </table> <!-- alert("<Actinic:Variable Name="UnregCustomersNotAllowedMessage"/>"); return false; --> </form>
Cheers FrAz
Comment