1. Home
  2. Docs
  3. For Developer
  4. Service Fee and VAT

Service Fee and VAT

You can use the code bellow to remove listing booking Service fee or changing VAT tax percent

add_filter( 'esb_listing_fees', function($fee){
    return 0; // percent
} );
add_filter( 'esb_listing_vat', function($vat){
    return 10; // percent
} );
Was this article helpful to you? Yes No

How can we help?