Announcement

Collapse
No announcement yet.

Site is VAT excluded but Marketing shows included

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

    Site is VAT excluded but Marketing shows included

    Hi found the area i think is the problem
    Design/Library/Price list

    But not sure what to replace, I need New Products and best sellers to be excluding vat
    Chris Ashdown

    #2
    Design / Library / Layouts / Prices

    Right-click Compact Tax Inclusive Price and choose Copy.

    Rename that copy to be Compact Tax Exclusive Price.

    Edit the new Compact Tax Exclusive Price and replace:
    Code:
    <actinic:variable name="PreFormattedPrice" value="Product Price Including Tax" />
    With:
    Code:
    <actinic:variable name="PreFormattedPrice" value="Product Price Excluding Tax" />
    Now go to Design / Library / Layouts / Price Lists.

    Right-click Marketing Price List and choose Copy.

    Rename that copy to be Marketing Price List Inc VAT.

    Open original Marketing Price List and replace the line:
    Code:
    <actinic:variable value="Compact Tax Inclusive Price" name="PriceLayout" />
    With:
    Code:
    <actinic:variable value="Compact Tax Exclusive Price" name="PriceLayout" />
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Many thanks Norman a Star as normal
      Chris Ashdown

      Comment


        #4
        Good morning Norman

        That does not seem to work it justs deletes the price from the two area's

        Does this code need changing to make it work under Tax exclusive Price

        <span class="product-price">
        <actinic:block PHP='true' SELECTABLE='false'>
        // Determine which prices to show in the Dynamic Price Layout
        $g_bShowDynamicTaxInclusivePrice = true;
        $g_bShowDynamicTaxMessage = false;
        $g_bShowDynamicTaxExclusivePrice = false;
        </actinic:block>
        Chris Ashdown

        Comment


          #5
          It works for me - I tested it before posting (otherwise I'd have marked my post "N.B. untested") and I just successfully tried it again on another site.

          Check for mistakes at your end.
          Norman - www.drillpine.biz
          Edinburgh, U K / Bitez, Turkey

          Comment

          Working...
          X