• Resolved timmiieehh

    (@timmiieehh)


    Beste,

    Wij hebben bepaalde producten die niet BTW belastbaar zijn. Dit hebben wij zo ingesteld. Op de factuur staat echter Subtotaal € 400,- (excl. btw). Ik ben benieuwd of dat de melding (excl. btw) uitgezet kan worden in de gratis versie.

    Overigens zie ik deze melding alleen wanneer ik in de algemene instellingen bij Woocommerce-)Instellingen-)Belasting-)Toon prijzen gedurende bestellen en afrekenen: Exclusief belastingen.

    Wanneer ik kies voor inclusief belastingen zie ik de melding (excl. btw) niet staan.

    Alvast bedankt voor de reactie.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Darren Peyou

    (@dpeyou)

    s

    Plugin Contributor Darren Peyou

    (@dpeyou)

    Hi @timmiieehh,

    Totals in the free Simple template come from WooCommerce, and WC determines based on that setting whether the price suffix is added. ??

    You can achieve this with the following code:

    add_filter( 'woocommerce_order_subtotal_to_display', function( $subtotal, $compound, $order ){
    	if ( $order->get_total_tax() == 0 ) {
    		$subtotal = preg_replace('/<small[\s\S]+?small>/', '', $subtotal);
    	}
    	return $subtotal;
    }, 10, 3 );

    If you haven’t worked with code snippets (actions/filters) or functions.php before, read this guide:
    https://docs.wpovernight.com/general/how-to-use-filters/

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Excl BTW melding op factuur bij niet belastbare producten’ is closed to new replies.