Announcement

Collapse
No announcement yet.

extra code between templates...?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    extra code between templates...?

    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 :
    Code:
    </tR>
    		 NETQUOTEVAR:PRODUCTPRICE<BR>
    	</table>
    Here is the first few lines of the product price :
    Code:
    <!-- ProductPrice HTML begin -->
    
    <TR>
      <TD align="left" nowrap>
    	&nbsp;NETQUOTEVAR:DISCOUNT_QUANTITY&nbsp;
    But when I view the final code it looks like this -

    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>
    	&nbsp;(2 or fewer items)&nbsp;
      </TD>
    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...
    John

    #2
    found the line break elsewhere, but still a bit weird that the code appears from nowhere...
    John

    Comment

    Working...
    X