🎉 Use coupon MYXERO to enjoy 20% recurring discount on any plan. View Pricing
B2B Quick Order Matrix

B2B Quick Order Matrix

0/5 (0 ratings) — active installs Updated Oct 16, 2025
Paste SKUs into the quick order form

Paste SKUs into the quick order form

B2B Quick Order Matrix streamlines bulk ordering for wholesale and B2B customers with seamless Excel integration.
Copy-paste directly from spreadsheets or upload CSV/TSV files to import multiple SKUs and quantities instantly.
Search for products by SKU or name, validate stock in real-time, and add everything to your cart in one click—no more browsing product pages one by one.

Key Features

  • Paste excel selection of upload CSV/TSV file with SKUs and quantities
  • Search products by SKU or name with enhanced product details
  • Automatic SKU resolution to product names
  • Inline stock quantity validation in order table
  • Stock availability alerts with user-friendly UI
  • Add all resolved items to cart in one click
  • Collapsible notifications area for cleaner interface

This saves significant time for repeat orders and bulk purchasing.

Developer Notes

Filter: b2bqom_check_user_permission

For developers: the plugin provides a filter to override or extend the default
role-based permission logic.

Default behavior:
– Administrators always allowed
– Other roles must be enabled in plugin settings

Filter usage:

add_filter( ‘b2bqom_check_user_permission’, function( $allowed, $user, $allowed_roles ) {
// Example: grant access to anyone with a custom capability
if ( user_can( $user, ‘read_private_products’ ) ) {
return true;
}
return $allowed;
}, 10, 3 );