Announcement

Collapse
No announcement yet.

Product Template Problem

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

    Product Template Problem

    Hi,

    Does anyone know how I can display the following
    price : £999.99 Inc.VAT or price inc VAT £999.99

    At the moment its showing
    price : £999.99
    Inc.VAT

    template code is as follows
    <!-- ProductLine HTML begin -->
    <!-- Insert HTML for the top of the individual product -->
    NETQUOTEVAR:INCLUDE Act_ProductSeparator.html
    NETQUOTEVAR:ENDSEPARATOR
    NETQUOTEVAR:PRODUCTFORMBEGIN
    <tr>
    <td rowspan="2" valign="TOP" align="CENTER"> NETQUOTEVAR:TEMPLATEBEGINXML NETQUOTEVAR:PRODUCTIMAGE </td>
    <td valign="TOP" align="LEFT" colspan="2">
    <a name="NETQUOTEVAR:PRODUCTANCHOR"><span class="actxsmall"><b>NETQUOTEVAR:PRODUCTNAME</b></span></a>
    <span class="actxsmall"><b>NETQUOTEVAR:PRODUCTREF</b>
    NETQUOTEVAR:PRODUCTDESCRIPTION&nbsp;NETQUOTEVAR:EXTINFOLINK</span>NETQUOTEVAR:EXTINFOBUTTON
    <br>
    <span class="actxsmall">NETQUOTEVAR:PRODUCTBEGINLINKNETQUOTEVAR:PRODUCTLINKTEXTNETQUOTEVAR:PRODUCTENDLINK
    NETQUOTEVAR:PRICEEXPLANATION </span><br>
    <b>NETQUOTEVAR:PRODUCTPRICE</b><br>
    <span class="actxsmall">NETQUOTEVARISCOUNTINFO </span>
    <span class="actxsmall">NETQUOTEVAR:OTHERINFOPROMPT </span>
    <span class="actxsmall">NETQUOTEVARATEPROMPT </span>
    </td>
    </tr>
    <tr>
    <td align="LEFT" colspan="2"><span class="actxsmall">
    NETQUOTEVAR:CARTERRORXMLNETQUOTEVAR:PRODUCTQUANTITY<br>
    <Actinic:ACTIONS>NETQUOTEVAR:ADDTOCARTBUTTON</Actinic:ACTIONS>
    </span>
    NETQUOTEVAR:TEMPLATEENDXML
    </td>
    </tr>
    NETQUOTEVAR:PRODUCTFORMEND
    NETQUOTEVAR:NEXT
    <!-- Insert HTML for the bottom of the individual product -->
    <!-- ProductLine HTML end -->

    #2
    try removing the line break in the code:

    Code:
    NETQUOTEVAR:PRICEEXPLANATION </span><br>
    <b>NETQUOTEVAR:PRODUCTPRICE</b><br>
    remove the first <br>

    Code:
    NETQUOTEVAR:PRICEEXPLANATION </span>
    <b>NETQUOTEVAR:PRODUCTPRICE</b><br>
    that should put the price explanation and the price on the same line

    Don't forget there is also some formatting coming from Act_ProductPrice.html
    Last edited by jont; 16-Mar-2006, 09:24 PM. Reason: act_prodtcprice


    Bikster
    SellerDeck Designs and Responsive Themes

    Comment


      #3
      Also have a look in Act_ProductPrice.html as this is the one that actually outputs the price when called by NETQUOTEVAR:PRODUCTPRICE

      Also look in Design / Text / Goto / Phase -1, ID 219 as this is where the "Inc VAT" bit comes from.
      Norman - www.drillpine.biz
      Edinburgh, U K / Bitez, Turkey

      Comment


        #4
        Thanks Jonty/Norman,

        Its was the Act_ProductPrice.html template I needed to modify and it now works a treat.

        Regards,

        Dave

        Comment

        Working...
        X