
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.
This saves significant time for repeat orders and bulk purchasing.
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 );