Comments 1Baerbel started the conversationJune 10, 2024 at 3:49pmIn the documentation I found the rules how to sort bulk order form a-z/z-a and beststelling. I wonder if there is a way to sort by SKU?Thank you for a short info. 2,219WebWizards repliedJune 10, 2024 at 7:12pmHi there,By default, the "a-z" and "z-a" search are based on the product title. However, we can also change it, to make that a a-z / z-a search based on the SKU. For that, you can add the following PHP code snippet to your site: add_filter('b2bking_bulkorder_sort_by', function($sortval, $product_id){ $sku = get_post_meta($product_id, '_sku', true); $sortval = $sku; return $sortval; }, 10, 2); A PHP snippet can be added to functions.php, or by following our guide here: https://woocommerce-b2b-plugin.com/docs/how-to-add-a-snippet-php-or-js/The result is that for example if we choose Z -> A, it now sorts as follows by SKU:If you need it, we can also add some custom CSS, for example to hide the "sort by" area, so there is only a single default option.Kind regards,Stefan Sign in to reply ...
In the documentation I found the rules how to sort bulk order form a-z/z-a and beststelling.
I wonder if there is a way to sort by SKU?
Thank you for a short info.
Hi there,
By default, the "a-z" and "z-a" search are based on the product title. However, we can also change it, to make that a a-z / z-a search based on the SKU.
For that, you can add the following PHP code snippet to your site:
A PHP snippet can be added to functions.php, or by following our guide here: https://woocommerce-b2b-plugin.com/docs/how-to-add-a-snippet-php-or-js/
The result is that for example if we choose Z -> A, it now sorts as follows by SKU:
If you need it, we can also add some custom CSS, for example to hide the "sort by" area, so there is only a single default option.
Kind regards,
Stefan