• Resolved jwktemplates

    (@jwktemplates)


    Hi!

    I had a pretty interesting problem.
    The default tax is 27%. I don’t have any other taxes. Delivery to Hungary sales to Hungary. The tax calculation is based on the business address, which is Budapest.
    Now it prints a gross amount of 21% in category or product view. On the basket and checkout side, on the other hand, it writes and calculates the real 27% tax.
    What could be causing this, or has anyone encountered such a problem before?

    Zoli

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Thread Starter jwktemplates

    (@jwktemplates)

    Resolved! The theme contained an override.

    function edit_price_display() {
        global $product;
        $price = $product->price;
        $price_incl_tax = $price + round($price * ( 21 / 100 ), 0);  
        $price_incl_tax = number_format($price_incl_tax, 0, ",", ".");
        $price = number_format($price, 0, ",", ".");
        $display_price = '<span class="price">';
      } 
Viewing 1 replies (of 1 total)
  • The topic ‘Improper tax calculation’ is closed to new replies.