Plugin info

Total downloads: 3,580
Active installs: 40
Total reviews: 2
Average rating: 5
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 4
Last updated: 8/2/2023 (929 days ago)
Added to WordPress: 4/4/2014 (11 years old)
Minimum WordPress version: 3.5.1
Tested up to WordPress version: 6.3.6
Minimum PHP version: 7.0

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 929 days ago • 2 reviews

22/100

Is WooCommerce Order Product Count abandoned?

Possibly abandoned (last update 929 days ago).

Compatibility

Requires WordPress: 3.5.1
Tested up to: 6.3.6
Requires PHP: 7.0

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Wholesale Order Table for WooCommerce
Rating 5.0/5 (4 reviews)Active installs 80
WP Bulk Delete
Rating 4.6/5 (114 reviews)Active installs 90,000
Bulk Delete
Rating 4.3/5 (130 reviews)Active installs 40,000
PW WooCommerce Bulk Edit
Rating 4.9/5 (233 reviews)Active installs 20,000
BulkPress
Rating 4.8/5 (52 reviews)Active installs 10,000

Description

For easy inventory gathering, generate a document with the quantity of each individual product in a neat PDF format.

How to use
On the WooCommerce Orders page, check each order you want to export the product count for, and then on the Bulk Actions drop down, select Orders Product Count and press Apply.

A PDF document will then be generated with your orders product count.

Requirements
WooCommerce 2.0 or later
WordPress 7.0 or later

Installation

  1. Upload woocommerce-order-product-count to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

Frequently Asked Questions

How do I use the plugin?

On the WooCommerce Orders page, check each order you want to export the product count for, and then on the Bulk Actions drop down, select Orders Product Count and press Apply.

A PDF document will then be generated with your orders product count.

How do I add a custom column to the exported PDF?

Here is an example on how to display the product price in the PDF. Add the following to your theme functions.php file:

function wcopcpdf_columns( $columns ) {
    // Remove the thumbnail column
    unset( $columns['thumbnail'] );

    // Add a column for product price
    $columns['price'] = array(
        'label' => 'Price',
        'size'  => '15%',
        'callback' => 'wcopcpdf_column_price' // Callback uses the function named below
    );

    return $columns;
}
add_filter( 'wc_order_product_count_columns', 'wcopcpdf_columns' );

if( ! function_exists( 'wcopcpdf_column_price' ) ) {
    /**
    * Callback to display the product price
    *     
    * @param int $product_id
    * @param int $quantity
    * @param array $orders
    * @param WC_Product $product
    */
    function wcopcpdf_column_price( $product_id, $quantity, $orders, $product ) {
        return wc_price( $product->get_price() );   
    }
}

Review feed

No reviews available

Screenshots

  1. Bulk Action dropdown to export product count

    Bulk Action dropdown to export product count

  2. View of an example exported product count PDF

    View of an example exported product count PDF

Changelog

2.0.0

  • BREAKING: Refactor plugin for compatibility with WP 6.3 and PHP 8+

1.3.2

  • WordPress 5.2 compatibility

1.3.1

  • Fix compatibility with variable products

1.3

  • Rewrite plugin to make it more extensible
  • Added several hooks for developers to modify, including modifying the columns displayed in the PDF

1.2

  • Added support for WooCommerce 2.6

1.1

  • Added support for variations
  • Added thumbnails

1.0

  • Initial plugin state