This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

WooCommerce Order Product Count

تفصیل

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 3.5 or later

سکرین شاٹاں

  • Bulk Action dropdown to export product count
  • View of an example exported product count PDF

انسٹال کرݨ

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

ہرہک دے سوال

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
     */
    function wcopcpdf_column_price( $product_id, $quantity, $orders ) {
        if( ! isset( $quantity ) || empty( $quantity ) )
            return false;

        $product = wc_get_product( $product_id );

        if( $product->id ) {
            return wc_price( $product->get_price() );
        }
        return false;   
    }
}

ریویو

ستمبر 3, 2016 1 reply
Now with the latest update, it works great again. Thanks for that fix!
سارے 2 ریویو پڑھو

Contributors & Developers

“WooCommerce Order Product Count” is open source software. The following people have contributed to this plugin.

حصہ پاوݨ آلے

تبدیلی لاگ

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