About
Hey there! We're WC Vendors, the team behind the best WooCommerce multi vendor marketplace plugin.
You can find lots of code snippets on our profile here at WP Code that will enhance your marketplace with some of the less commonly asked for features we have generated installable code snippets for.
If you find a bug in one of these snippets please let us know via the support form on our site :)
And visit us if you're looking for a great multi vendor plugin for WooCommerce!
110
Snippets
10+
Favourites
20+
Downloads
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…
<10
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…
<10