Announcement

Collapse
No announcement yet.

Does any one know if...

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

    Does any one know if...

    The cart content box in the primary template (Items:0 Value:0) can display an exc VAT figure rather than an inc VAT figure?

    Many thanks

    Nik

    #2
    Hi Nik

    Please try this workaround :

    1. Browse to C:\ProgramFiles\ActinicV7\Sites\Site 1(or equivalent folder)

    2. Find and right-click on ActinicOrder.pm to open it in a text editor like Notepad.

    3. Search for 'sub GenerateCartCookie'
    Scroll down until you see...
    my $nTotal = $Response[6];

    For total excluding tax, shipping and handling change the above to...
    my $nTotal = $Response[2];

    For total excluding tax but including shipping and handling change the
    above to...
    my $nTotal = $Response[2] + $Response[3];

    4. Save and exit and upload changes to site.

    Hope this helps.
    Krithika Chandrasekar
    SellerDeck

    sigpic

    E-commerce software by SellerDeck

    Comment


      #3
      Krithika

      Works great. Thanks a million.

      Nik

      Comment

      Working...
      X