The closer we get to finishing our shop the more things go wrong! I edited nothing in my act_primary.html template, refershed and the NQV:Bulk now does nothing, it displays nothing in the shop and wont generate product pages. Any ideas anyone?
Announcement
Collapse
No announcement yet.
NQV:Bulk Problems
Collapse
X
-
As always, an URL would help. Without that check that in "editing nothing" you've not left an unclosed <!-- comment tag somewhere that's hiding the BULK tag.Norman - www.drillpine.biz
Edinburgh, U K / Bitez, Turkey
-
Originally posted by NormanRouxelAs always, an URL would help. Without that check that in "editing nothing" you've not left an unclosed <!-- comment tag somewhere that's hiding the BULK tag.
I've checked and there isnt an un opened <!-- --> tag in the document
Comment
-
That Template looks nothing like a workable Act_Primary.html. You seem to have hard-coded a lot of Actinic generated NETQUOTEVAR's. The BULK tag is outside the PRODUCTFORM to start. Here's correct fragmentCode:<table width="98%" cellpadding="5" cellspacing="0" class="thinborder"> <tr> <td valign="top">NETQUOTEVAR:FORMBEGIN <A NAME="top"> <INPUT TYPE=HIDDEN NAME=RANDOM VALUE="NETQUOTEVAR:RANDOM"></A> NETQUOTEVAR:HIDDENFIELDS <!-- If customer accounts are in operation following two lines allow displaying --> <!-- User name and customer account name on every page --> <!-- NETQUOTEVAR:LOGINLINK --><Actinic:NOWSERVING/><Actinic:CURRACCOUNT/><Actinic:LOGOUT_SIMPLE/> <!-- NETQUOTEVAR:HEADER --> <div align="center"><span class="actxsmall">NETQUOTEVAR:HEADERTEXT</span></div> NETQUOTEVAR:BULK <br> <div align="center"><span class="actxsmall">NETQUOTEVAR:FOOTERTEXT</span></div> <!-- NETQUOTEVAR:FOOTER --> NETQUOTEVAR:FORMEND</td> </tr> </table>
Code:<table border="0" cellpadding="0" cellspacing="0" width="80%" class="fp_table" > <tr> <td class="featured_products_title_stock" colspan="5"> Shop</td> </tr> <tr> <td class="featured_products_content_row" align="left"> NETQUOTEVAR:BULK <FORM METHOD=POST ACTION="/cgi-bin/ca000000.pl" > <INPUT TYPE="HIDDEN" NAME="RANDOM" VALUE="NETQUOTEVAR:RANDOM"> </td> </tr> <tr> <td class="featured_products_content_row" align="left"> </td> </tr> </table>
Norman - www.drillpine.biz
Edinburgh, U K / Bitez, Turkey
Comment
-
Originally posted by NormanRouxelThat Template looks nothing like a workable Act_Primary.html. You seem to have hard-coded a lot of Actinic generated NETQUOTEVAR's. The BULK tag is outside the PRODUCTFORM to start. Here's correct fragmentCode:<table width="98%" cellpadding="5" cellspacing="0" class="thinborder"> <tr> <td valign="top">NETQUOTEVAR:FORMBEGIN <A NAME="top"> <INPUT TYPE=HIDDEN NAME=RANDOM VALUE="NETQUOTEVAR:RANDOM"></A> NETQUOTEVAR:HIDDENFIELDS <!-- If customer accounts are in operation following two lines allow displaying --> <!-- User name and customer account name on every page --> <!-- NETQUOTEVAR:LOGINLINK --><Actinic:NOWSERVING/><Actinic:CURRACCOUNT/><Actinic:LOGOUT_SIMPLE/> <!-- NETQUOTEVAR:HEADER --> <div align="center"><span class="actxsmall">NETQUOTEVAR:HEADERTEXT</span></div> NETQUOTEVAR:BULK <br> <div align="center"><span class="actxsmall">NETQUOTEVAR:FOOTERTEXT</span></div> <!-- NETQUOTEVAR:FOOTER --> NETQUOTEVAR:FORMEND</td> </tr> </table>
Code:<table border="0" cellpadding="0" cellspacing="0" width="80%" class="fp_table" > <tr> <td class="featured_products_title_stock" colspan="5"> Shop</td> </tr> <tr> <td class="featured_products_content_row" align="left"> NETQUOTEVAR:BULK <FORM METHOD=POST ACTION="/cgi-bin/ca000000.pl" > <INPUT TYPE="HIDDEN" NAME="RANDOM" VALUE="NETQUOTEVAR:RANDOM"> </td> </tr> <tr> <td class="featured_products_content_row" align="left"> </td> </tr> </table>
Comment
Comment