Home / Archive / MemberPress: TaxJar – Prevent Sending VAT Transactions to TaxJar
Duplicate Snippet

Embed Snippet on Your Site

MemberPress: TaxJar – Prevent Sending VAT Transactions to TaxJar

When the MemberPress TaxJar integration is active, by default, MemberPress will send all transactions to TaxJar, including the VAT transactions. Since TaxJar does not handle EU tax services, this can affect TaxJar's per-transaction billing plan by also counting VAT transactions, though they aren’t actually being handled by their service.

The following code snippet will exclude VAT transactions from being sent to TaxJar.

Code Preview
php
<?php
function mepr_cust_no_vat_to_taxjar( $should_send, $event ) {
  $transaction = $event->get_data();
  if ( strpos( $transaction->tax_desc, __( 'VAT', 'memberpress' ) ) !== false ) {
    $should_send = false;
  }
  return $should_send;
}
add_filter( 'mepr_taxjar_should_send_txn', 'mepr_cust_no_vat_to_taxjar', 10, 2 );

Comments

Add a Comment