Version Description
No Upgrade required at this time.
Download this release
Release Info
Developer | digitalchild |
Plugin | WC Vendors |
Version | 1.7.9 |
Comparing to | |
See all releases |
Code changes from version 1.7.8 to 1.7.9
- changelog.txt +4 -0
- class-wc-vendors.php +1 -1
- classes/admin/class-product-meta.php +5 -3
- readme.txt +6 -2
changelog.txt
CHANGED
@@ -1,5 +1,9 @@
|
|
1 |
Changelog for WC Vendors
|
2 |
|
|
|
|
|
|
|
|
|
3 |
Version 1.7.8
|
4 |
|
5 |
* Fixed: Vendors can not register #193
|
1 |
Changelog for WC Vendors
|
2 |
|
3 |
+
Version 1.7.9
|
4 |
+
|
5 |
+
* Fixed: woocommerce filter and action issues on product edit page
|
6 |
+
|
7 |
Version 1.7.8
|
8 |
|
9 |
* Fixed: Vendors can not register #193
|
class-wc-vendors.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
* Author: WC Vendors
|
8 |
* Author URI: http://wcvendors.com
|
9 |
*
|
10 |
-
* Version: 1.7.
|
11 |
* Requires at least: 4.0.0
|
12 |
* Tested up to: 4.3.1
|
13 |
*
|
7 |
* Author: WC Vendors
|
8 |
* Author URI: http://wcvendors.com
|
9 |
*
|
10 |
+
* Version: 1.7.9
|
11 |
* Requires at least: 4.0.0
|
12 |
* Tested up to: 4.3.1
|
13 |
*
|
classes/admin/class-product-meta.php
CHANGED
@@ -23,9 +23,11 @@ class WCV_Product_Meta
|
|
23 |
|
24 |
add_action( 'add_meta_boxes', array( $this, 'change_author_meta_box_title' ) );
|
25 |
add_action( 'wp_dropdown_users', array( $this, 'author_vendor_roles' ), 0, 1 );
|
26 |
-
|
27 |
-
|
28 |
-
|
|
|
|
|
29 |
|
30 |
add_action( 'woocommerce_product_quick_edit_end', array($this, 'display_vendor_dd_quick_edit') );
|
31 |
add_action( 'woocommerce_product_quick_edit_save', array($this, 'save_vendor_quick_edit'), 2, 99 );
|
23 |
|
24 |
add_action( 'add_meta_boxes', array( $this, 'change_author_meta_box_title' ) );
|
25 |
add_action( 'wp_dropdown_users', array( $this, 'author_vendor_roles' ), 0, 1 );
|
26 |
+
if ( apply_filters( 'wcv_product_commission_tab', true ) ) {
|
27 |
+
add_action( 'woocommerce_product_write_panel_tabs', array( $this, 'add_tab' ) );
|
28 |
+
add_action( 'woocommerce_product_write_panels', array( $this, 'add_panel' ) );
|
29 |
+
add_action( 'woocommerce_process_product_meta', array( $this, 'save_panel' ) );
|
30 |
+
}
|
31 |
|
32 |
add_action( 'woocommerce_product_quick_edit_end', array($this, 'display_vendor_dd_quick_edit') );
|
33 |
add_action( 'woocommerce_product_quick_edit_save', array($this, 'save_vendor_quick_edit'), 2, 99 );
|
readme.txt
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
=== WC Vendors ===
|
2 |
Contributors: wcvendors, digitalchild
|
3 |
-
Tags: commission rate,
|
4 |
Donate link: http://www.wcvendors.com/
|
5 |
Author URI: http://www.wcvendors.com/
|
6 |
Plugin URI: http://www.wcvendors.com/
|
7 |
Requires at least: 4.0
|
8 |
Tested up to: 4.3.1
|
9 |
-
Stable tag: 1.7.
|
10 |
License: GPLv2 or later
|
11 |
|
12 |
The free multi-vendor plugin for WooCommerce. Now you can allow anyone to open a store on your site!
|
@@ -96,6 +96,10 @@ No Upgrade required at this time.
|
|
96 |
|
97 |
== Changelog ==
|
98 |
|
|
|
|
|
|
|
|
|
99 |
= Version 1.7.8 - 18th September 2015 =
|
100 |
|
101 |
* Fixed: Vendors can not register #193
|
1 |
=== WC Vendors ===
|
2 |
Contributors: wcvendors, digitalchild
|
3 |
+
Tags: commission rate, e-commerce, ecommerce, ebay, free, marketplace, multi seller, multi store, multi vendor, multistore, multivendor, multivendors, product vendor, product vendors, seller, shops, store, vendor, vendor shop, vendor system, vendors, wc multivendor, wc vendors, wc marketplace, wc market, woo vendors, woocommerce, woocommerce marketplace, woocommerce multi vendor, WooCommerce multivendor, woocommerce product vendors, WooCommerce vendors, yit, yith, yithemes
|
4 |
Donate link: http://www.wcvendors.com/
|
5 |
Author URI: http://www.wcvendors.com/
|
6 |
Plugin URI: http://www.wcvendors.com/
|
7 |
Requires at least: 4.0
|
8 |
Tested up to: 4.3.1
|
9 |
+
Stable tag: 1.7.9
|
10 |
License: GPLv2 or later
|
11 |
|
12 |
The free multi-vendor plugin for WooCommerce. Now you can allow anyone to open a store on your site!
|
96 |
|
97 |
== Changelog ==
|
98 |
|
99 |
+
= Version 1.7.9 - 30th September 2015 =
|
100 |
+
|
101 |
+
* Fixed: woocommerce filter and action issues on product edit page
|
102 |
+
|
103 |
= Version 1.7.8 - 18th September 2015 =
|
104 |
|
105 |
* Fixed: Vendors can not register #193
|