Announcement

Collapse
No announcement yet.

Price and VAT text on some products only

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

    Price and VAT text on some products only

    Hi,

    I know it is a tall order, but is it possible to have the texts "price: and excluding VAT" on some products and not others?

    I have some products in rows and some using the "parent" template, so would like to be able to "mix and match" if possible

    Thanks

    #2
    It might be possible. Are you running Catalog or Business?
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Hi Norman, I'm using Catalog Developer V7

      Comment


        #4
        Will the live site be Catalog or Business?
        Norman - www.drillpine.biz
        Edinburgh, U K / Bitez, Turkey

        Comment


          #5
          Hi Norman,

          The live site is Catalog developer V7

          Comment


            #6
            Use the following for Act_ProductPrice.html (I was using the Best Seller theme)
            Code:
            <!-- ProductPrice HTML begin -->
            <!-- This template is used for the product price text. -->
            
            <br><span class="actxsmall"><b>
            <script language=JavaScript>
            <!--
            if ( fullinfo ) document.write(' NETQUOTEVAR:PRICEPROMPT &nbsp;');
            //-->
            </script>
            NETQUOTEVAR:DISCOUNT_QUANTITY&nbsp;NETQUOTEVAR:COST</b></span>
            <script language=JavaScript>
            <!--
            if ( fullinfo ) document.write('<span class="actxxsmall">NETQUOTEVAR:TAXMESSAGE</span>');
            //-->
            </script>
            
            <!-- This template is used for the product price text. -->
            <!-- ProductPrice HTML end -->
            In your normal Product template(s) add the following just after the
            NETQUOTEVAR:PRODUCTFORMBEGIN line
            Code:
            <script language=JavaScript>
            <!--
            var fullinfo = true;
            //-->
            </script>
            In your compact product templates(s) add the following just after the
            NETQUOTEVAR:PRODUCTFORMBEGIN line
            Code:
            <script language=JavaScript>
            <!--
            var fullinfo = false;
            //-->
            </script>
            Make sure that one of the above two patches is in all your Product Templates.
            Norman - www.drillpine.biz
            Edinburgh, U K / Bitez, Turkey

            Comment


              #7
              Thanks for your very swift response and your help on this, Norman - I will try this out

              Comment

              Working...
              X