Paystack Split Payments Integration with WC Vendors — Calculating Vendor Splits

if ( wc_string_to_bool( get_option( 'wcvendors_vendor_give_taxes' ) ) ) { // Add tax fees to vendor total…

Paystack Split Payments Integration with WC Vendors — Creating the Split Configuration

public function process_split_payment( $order ) { $vendors_due = WCV_Vendors::get_vendor_dues_from_order( $order, false ); $sub_accounts = array(); foreach…

1 8 9 10