Paystack Split Payments Integration with WC Vendors — Saving the Vendor Sub-Account Code

update_user_meta( $user->ID, '_paystack_sub_account_code', 'ACCT_xxxxxxxxxxxxx' );

Exclude Specific Products from Parent Category

/** * Exclude specific products from appearing in their parent category. */ add_action('woocommerce_product_query', 'exclude_specific_products_from_parent_category'); function exclude_specific_products_from_parent_category($q)…

Restrict payment methods based on cart total

Restrict payment methods based on cart total

Remove Express Checkout Button for Wholesale Users

Removes the Apple Pay and Google Pay buttons for Wholesale Users

How to Set a Default Country on the Vendor Registration Form

Make sure to select the correct vendor registration page under WC Vendors > Settings > Registration…

JS Tickera Auto Click (PassieVol)

JS Tickera Auto Click (PassieVol)

HubSpot Tracking Code

HubSpot Tracking Code

Meredith Bleak PRO
<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…

Product order WooCommerce

Force alphabetical sorting on all product pages

1 9 10 11 12 13