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.

Change Product Author for WooCommerce

ਵੇਰਵਾ

WooCommerce requires at least: 2.2

WooCommerce tested up to: 2.4.12

While working on a project there was a situation where I needed to change the author assigned to a WooCommerce product. The product author was receiving unwanted notifications when reviews for the product were being left. We did not want to turn the notifications off; we just wanted them to go to a different author or user. Changing the author is easily possible with posts and pages, but the option isn’t available by default for WooCommerce products.

Adding the functionality is very simple – it involves adding author support to the product post type which can be accomplished by adding the following to your theme’s functions.php file:

if ( post_type_exists( 'product' ) ) {
    add_post_type_support( 'product', 'author' );
}

However, for users who don’t want to touch the functions.php file, or would prefer a solution that is not restricted to a theme, I created this simple plugin. Just activate the plugin with WooCommerce also installed and you will be able to change the author of a product as if it were a standard post or page.
After activating the plugin you will be able to change the author assigned to a WooCommerce product by editing the product in the WP dashboard. See screenshot for details.

If you do not see a place to change the author, check the screen options and make sure that ‘Author’ is checked. See screenshot for details.

Please note that WooCommerce must be installed and activated for the plugin to work.

ਸਕਰੀਨਸ਼ਾਟ

  • Where to edit the product
  • Where to change the author
  • Make sure the 'author' option is checked in the screen options

ਸਥਾਪਤੀਕਰਨ

Automatic Installation

Installing this plugin automatically is the easiest option. You can install the plugin automatically by going to the plugins section in WordPress and clicking Add New. Type “WooCommerce Change Product Author” in the search bar and install the plugin by clicking the Install Now button.

Manual Installation

To manually install the plugin you’ll need to download the plugin to your computer and upload it to your server via FTP or another method. The plugin needs to be extracted in the wp-content/plugins folder. Once done you should be able to activate it as usual.

If you are having trouble, take a look at the Managing Plugins section in the WordPress Codex, it has more information on this topic.

ਸਮੀਖਿਆਵਾਂ

25 ਜੂਨ 2017
It is perfect. It would be a big burden to find how to change product authors without this nice plugin.
8 ਜੂਨ 2017
Thanks Ollie! Perfect plugin, does exactly what it says. Out of interest, any idea why Woo does not support author in core?
3 ਸਤੰਬਰ 2016
thanks a lot for the amazing plugin. I saved a lot of time using this amazing plugin.
Read all 7 reviews

ਯੋਗਦਾਨੀ ਤੇ ਵਿਕਾਸਕਾਰ

“Change Product Author for WooCommerce” is open source software. The following people have contributed to this plugin.

ਯੋਗਦਾਨੀ

“Change Product Author for WooCommerce” ਦਾ ਆਪਣੀ ਭਾਸ਼ਾ ਵਿੱਚ ਅਨੁਵਾਦ ਕਰੋ।

ਵਿਕਾਸ ਕਾਰਜ ਵਿੱਚ ਰੁਚੀ ਰੱਖਦੇ ਹੋ?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

ਤਬਦੀਲੀ-ਚਿੱਠਾ

1.0.0

  • Initial Release