In my version of the act_product_line template I call the product_price template as normal - but somewhere between the two some code is leaking in...
Here is the code in the product line :
Here is the first few lines of the product price :
But when I view the final code it looks like this -
In other words this whole line "<Actinic:PRICES PROD_REF="85" RETAIL_PRICE_PROMPT="Price:"><Actinic:TEMPLATE type="begin" filename="F:\Program Files\Actinic v7\Sites\xxx\Act_ProductPrice.html"/>" has suddenly inserted itself after the price template is called, but before the code from the price teplate itself. So where does it come from? The reason I ask is that it is inserting a line break into the end result which is somewhat annoying...
Here is the code in the product line :
Code:
</tR> NETQUOTEVAR:PRODUCTPRICE<BR> </table>
Code:
<!-- ProductPrice HTML begin --> <TR> <TD align="left" nowrap> NETQUOTEVAR:DISCOUNT_QUANTITY
Code:
</tR> <Actinic:PRICES PROD_REF="85" RETAIL_PRICE_PROMPT="Price:"><Actinic:TEMPLATE type="begin" filename="F:\Program Files\Actinic v7\Sites\xxx\Act_ProductPrice.html"/> <!-- ProductPrice HTML begin --> <TR> <TD align="left" nowrap> (2 or fewer items) </TD>
Comment