WooCommerce Filter Orders by Product

描述

Ever wanted to filter the order page results by any specific product? Now with this plugin, you can!

After installing this plugin a new filter dropdown will appear in WooCommerce Orders screen. This dropdown shows a list of all products. Just select a product and click on the “Filter” button. It’ll show up the orders which contain only that specific product.

New: From version 3.0 now it’s possible to filter by “Product Category” as well.

Currently this only works for published products. If you want it to work for all product statuses eg. draft, private etc you have to add the following code in your theme’s functions.php file:

add_action( 'wfobp_product_status', 'filter_order_by_product_status' );
function filter_order_by_product_status(){
    return 'any';
}

This project is on GitHub

屏幕截图

  • From admin panel, Click on "WooCommerce>Orders" to visit the Orders screen. There you'll see a new dropdown filter.
  • Click on that dropdown and you'll see a list of all products. Select a product and click on "Filter" button. It'll show up the orders which contains only that specific product.

安装

  1. Upload the entire ‘woocommerce-filter-orders-by-product’ folder to the ‘/wp-content/plugins/’ directory.
  2. 通过WordPress的“插件”菜单激活插件。

You will see a new filter appears in WooCommerce Orders page.

评价

2021年4月2日
This plugin is super helpful. I wanted to add a link on a custom admin page to orders for a specific product, and I just had to copy the URL string and add it to a link. Many thanks to the author!
2019年7月30日
to be honest I don't know why something so logical and useful is not already built into Woocommerce
阅读所有12条评价

贡献者及开发者

“WooCommerce Filter Orders by Product” 是开源软件。 以下人员对此插件做出了贡献。

贡献者

“WooCommerce Filter Orders by Product”插件已被翻译至7种本地话语言。 感谢所有译者为本插件所做的贡献。

将“WooCommerce Filter Orders by Product”翻译成您的语言。

对开发感兴趣吗?

您可以浏览代码,查看SVN仓库,或通过RSS订阅开发日志

更新日志

3.1

  • Readme updated

3.0

  • New: Now it’s possible to filter by Product Category
  • Code refactored

2.0.7

  • Fix: Products with same name only appeared once before

2.0.6

  • Added hook for changing product status

2.0.5

  • Fixed SQL injection bug

2.0.4

  • Improved code

2.0.3

  • Fix: Language

2.0.2

  • Fixed translation bug (Thanks to Kasperta)

2.0.1

  • Fixed a minor bug

2.0.0

  • New: search dropdown
  • Fixed a major bug

1.0.0

  • Initial release