WC Vendors - Version 2.1.9

Version Description

Download this release

Release Info

Developer digitalchild
Plugin Icon 128x128 WC Vendors
Version 2.1.9
Comparing to
See all releases

Code changes from version 2.1.8 to 2.1.9

changelog.txt CHANGED
@@ -1,5 +1,14 @@
1
  Changelog for WC Vendors Marketplace
2
 
 
 
 
 
 
 
 
 
 
3
  Version 2.1.8 - 18th April 2019
4
 
5
  * Fixed: Vendor featured product shortcode display the same products for every vendor #553
1
  Changelog for WC Vendors Marketplace
2
 
3
+ Version 2.1.9 - 9th may 2019
4
+
5
+ * Updated: Tested to 5.6 and WooCommerce 3.6.x
6
+ * Updated: Removed development files from release
7
+ * Updated: Language file
8
+ * Fixed: Commission tab inside Product Data box style problem #549
9
+ * Fixed: Invalid vendor settings form markup thanks to bporcelli
10
+
11
+
12
  Version 2.1.8 - 18th April 2019
13
 
14
  * Fixed: Vendor featured product shortcode display the same products for every vendor #553
class-wc-vendors.php CHANGED
@@ -7,11 +7,11 @@
7
  * Author URI: https://www.wcvendors.com
8
  * GitHub Plugin URI: https://github.com/wcvendors/wcvendors
9
  *
10
- * Version: 2.1.8
11
  * Requires at least: 4.4.0
12
- * Tested up to: 5.1
13
  * WC requires at least: 3.3.0
14
- * WC tested up to: 3.5.8
15
  *
16
  * Text Domain: wc-vendors
17
  * Domain Path: /languages/
@@ -97,7 +97,7 @@ if ( wcv_is_woocommerce_activated() ) {
97
  */
98
  class WC_Vendors {
99
 
100
- public $version = '2.1.8';
101
 
102
  /**
103
  * @var
7
  * Author URI: https://www.wcvendors.com
8
  * GitHub Plugin URI: https://github.com/wcvendors/wcvendors
9
  *
10
+ * Version: 2.1.9
11
  * Requires at least: 4.4.0
12
+ * Tested up to: 5.2
13
  * WC requires at least: 3.3.0
14
+ * WC tested up to: 3.6.2
15
  *
16
  * Text Domain: wc-vendors
17
  * Domain Path: /languages/
97
  */
98
  class WC_Vendors {
99
 
100
+ public $version = '2.1.9';
101
 
102
  /**
103
  * @var
classes/admin/class-product-meta.php CHANGED
@@ -187,7 +187,7 @@ class WCV_Product_Meta {
187
 
188
  ?>
189
  <li class="commission_tab">
190
- <a href="#commission"><?php _e( 'Commission', 'wc-vendors' ); ?></a>
191
  </li>
192
  <?php
193
  }
187
 
188
  ?>
189
  <li class="commission_tab">
190
+ <a href="#commission"><span><?php _e( 'Commission', 'wc-vendors' ); ?></span></a>
191
  </li>
192
  <?php
193
  }
classes/admin/views/html-vendor-settings-page.php CHANGED
@@ -1,74 +1,104 @@
1
  <div class="wrap">
2
  <h2>Shop Settings</h2>
3
- <table class="form-table">
4
 
5
- <form method="post">
6
- <?php do_action( 'wcvendors_settings_before_paypal' );
7
 
8
- if ( $paypal_address !== 'false' ) { ?>
9
 
10
  <tr>
11
- <th><?php _e( 'PayPal Address', 'wc-vendors' ); ?></th>
12
- <td><input type="email" name="pv_paypal" class="regular-text" id="pv_paypal"
 
 
 
 
 
13
  placeholder="some@email.com"
14
- value="<?php echo get_user_meta( $user_id, 'pv_paypal', true ); ?>"/>
15
  <p class="description">
16
  <?php _e( 'Your PayPal address can be used to send you your commission.', 'wc-vendors' ); ?>
17
- <br/>
18
  </p>
19
  </td>
20
  </tr>
21
- <?php } ?>
22
- <?php do_action( 'wcvendors_settings_after_paypal' ); ?>
23
 
 
 
 
24
 
25
  <?php if ( apply_filters( 'wcvendors_admin_user_meta_bank_details_enable', true ) ) : ?>
26
 
27
  <?php do_action( 'wcvendors_settings_before_bank_details', $user_id ); ?>
28
  <tr>
29
- <th><label for="wcv_bank_account_name"><?php _e( 'Bank Account Name', 'wc-vendors' ); ?> <span
30
- class="description"></span></label></th>
31
- <td><input type="text" name="wcv_bank_account_name" id="wcv_bank_account_name"
 
 
 
 
32
  value="<?php echo get_user_meta( $user_id, 'wcv_bank_account_name', true ); ?>"
33
  class="regular-text">
34
  </td>
35
  </tr>
36
  <tr>
37
- <th><label for="wcv_bank_account_number"><?php _e( 'Bank Account Number', 'wc-vendors' ); ?> <span
38
- class="description"></span></label></th>
39
- <td><input type="text" name="wcv_bank_account_number" id="wcv_bank_account_number"
 
 
 
 
40
  value="<?php echo get_user_meta( $user_id, 'wcv_bank_account_number', true ); ?>"
41
  class="regular-text">
42
  </td>
43
  </tr>
44
  <tr>
45
- <th><label for="wcv_bank_name"><?php _e( 'Bank Name', 'wc-vendors' ); ?> <span
46
- class="description"></span></label></th>
47
- <td><input type="text" name="wcv_bank_name" id="wcv_bank_name"
48
- value="<?php echo get_user_meta( $user_id, 'wcv_bank_name', true ); ?>"
49
- class="regular-text">
 
 
 
 
50
  </td>
51
  </tr>
52
  <tr>
53
- <th><label for="wcv_bank_routing_number"><?php _e( 'Routing Number', 'wc-vendors' ); ?> <span
54
- class="description"></span></label></th>
55
- <td><input type="text" name="wcv_bank_routing_number" id="wcv_bank_routing_number"
 
 
 
 
56
  value="<?php echo get_user_meta( $user_id, 'wcv_bank_routing_number', true ); ?>"
57
  class="regular-text">
58
  </td>
59
  </tr>
60
  <tr>
61
- <th><label for="wcv_bank_iban"><?php _e( 'IBAN', 'wc-vendors' ); ?> <span
62
- class="description"></span></label></th>
63
- <td><input type="text" name="wcv_bank_iban" id="wcv_bank_iban"
 
 
 
 
64
  value="<?php echo get_user_meta( $user_id, 'wcv_bank_iban', true ); ?>"
65
  class="regular-text">
66
  </td>
67
  </tr>
68
  <tr>
69
- <th><label for="wcv_bank_bic_swift"><?php _e( 'BIC/SWIFT', 'wc-vendors' ); ?> <span
70
- class="description"></span></label></th>
71
- <td><input type="text" name="wcv_bank_bic_swift" id="wcv_bank_bic_swift"
 
 
 
 
72
  value="<?php echo get_user_meta( $user_id, 'wcv_bank_bic_swift', true ); ?>"
73
  class="regular-text">
74
  </td>
@@ -77,18 +107,29 @@
77
 
78
  <?php endif; ?>
79
 
80
-
81
  <tr>
82
- <th><?php _e( 'Shop Name', 'wc-vendors' ); ?></th>
83
- <td><input type="text" name="pv_shop_name" id="pv_shop_name" placeholder="Your shop name"
84
- value="<?php echo get_user_meta( $user_id, 'pv_shop_name', true ); ?>"/>
85
- <p class="description"><?php _e( 'Your shop name is public and must be unique.', 'wc-vendors' ); ?></p>
 
 
 
 
 
 
 
86
  </td>
87
  </tr>
 
88
  <?php do_action( 'wcvendors_settings_after_shop_name' ); ?>
89
 
90
  <tr>
91
- <th><?php echo apply_filters( 'wcvendors_seller_info_label', __( 'Seller info', 'wc-vendors' ) ); ?></th>
 
 
 
 
92
  <td>
93
  <?php
94
 
@@ -104,13 +145,22 @@
104
  <?php
105
  }
106
  ?>
107
- <p class="description"><?php _e( 'This is displayed on each of your products.', 'wc-vendors' ); ?></p>
 
 
108
  </td>
109
  </tr>
 
110
  <?php do_action( 'wcvendors_settings_after_seller_info' ); ?>
111
- <?php if ( $shop_description !== 'false' ) { ?>
 
 
112
  <tr>
113
- <th><?php _e( 'Shop Description', 'wc-vendors' ); ?></th>
 
 
 
 
114
  <td>
115
  <?php
116
 
@@ -126,19 +176,23 @@
126
  <?php
127
  }
128
  ?>
129
- <p class="description"><?php printf( __( 'This is displayed on your <a href="%s">shop page</a>.', 'wc-vendors' ), $shop_page ); ?></p>
 
 
130
  </td>
131
  </tr>
132
 
133
  <?php do_action( 'wcvendors_settings_after_shop_description' ); ?>
134
- <?php } ?>
135
- <?php wp_nonce_field( 'save-shop-settings-admin', 'wc-vendors-nonce' ); ?>
 
136
  <tr>
137
- <td colspa="2">
 
138
  <input type="submit" class="button button-primary" name="vendor_application_submit"
139
- value="<?php _e( 'Save Shop Settings', 'wc-vendors' ); ?>"/>
140
  </td>
141
  </tr>
142
- </form>
143
- </table>
144
  </div>
1
  <div class="wrap">
2
  <h2>Shop Settings</h2>
3
+ <form method="post">
4
 
5
+ <table class="form-table">
6
+ <?php do_action( 'wcvendors_settings_before_paypal' ); ?>
7
 
8
+ <?php if ( $paypal_address !== 'false' ) : ?>
9
 
10
  <tr>
11
+ <th>
12
+ <label for="pv_paypal">
13
+ <?php _e( 'PayPal Address', 'wc-vendors' ); ?>
14
+ </label>
15
+ </th>
16
+ <td>
17
+ <input type="email" name="pv_paypal" class="regular-text" id="pv_paypal"
18
  placeholder="some@email.com"
19
+ value="<?php echo get_user_meta( $user_id, 'pv_paypal', true ); ?>">
20
  <p class="description">
21
  <?php _e( 'Your PayPal address can be used to send you your commission.', 'wc-vendors' ); ?>
22
+ <br>
23
  </p>
24
  </td>
25
  </tr>
 
 
26
 
27
+ <?php endif; ?>
28
+
29
+ <?php do_action( 'wcvendors_settings_after_paypal' ); ?>
30
 
31
  <?php if ( apply_filters( 'wcvendors_admin_user_meta_bank_details_enable', true ) ) : ?>
32
 
33
  <?php do_action( 'wcvendors_settings_before_bank_details', $user_id ); ?>
34
  <tr>
35
+ <th>
36
+ <label for="wcv_bank_account_name">
37
+ <?php _e( 'Bank Account Name', 'wc-vendors' ); ?>
38
+ </label>
39
+ </th>
40
+ <td>
41
+ <input type="text" name="wcv_bank_account_name" id="wcv_bank_account_name"
42
  value="<?php echo get_user_meta( $user_id, 'wcv_bank_account_name', true ); ?>"
43
  class="regular-text">
44
  </td>
45
  </tr>
46
  <tr>
47
+ <th>
48
+ <label for="wcv_bank_account_number">
49
+ <?php _e( 'Bank Account Number', 'wc-vendors' ); ?>
50
+ </label>
51
+ </th>
52
+ <td>
53
+ <input type="text" name="wcv_bank_account_number" id="wcv_bank_account_number"
54
  value="<?php echo get_user_meta( $user_id, 'wcv_bank_account_number', true ); ?>"
55
  class="regular-text">
56
  </td>
57
  </tr>
58
  <tr>
59
+ <th>
60
+ <label for="wcv_bank_name">
61
+ <?php _e( 'Bank Name', 'wc-vendors' ); ?>
62
+ </label>
63
+ </th>
64
+ <td>
65
+ <input type="text" name="wcv_bank_name" id="wcv_bank_name"
66
+ value="<?php echo get_user_meta( $user_id, 'wcv_bank_name', true ); ?>"
67
+ class="regular-text">
68
  </td>
69
  </tr>
70
  <tr>
71
+ <th>
72
+ <label for="wcv_bank_routing_number">
73
+ <?php _e( 'Routing Number', 'wc-vendors' ); ?>
74
+ </label>
75
+ </th>
76
+ <td>
77
+ <input type="text" name="wcv_bank_routing_number" id="wcv_bank_routing_number"
78
  value="<?php echo get_user_meta( $user_id, 'wcv_bank_routing_number', true ); ?>"
79
  class="regular-text">
80
  </td>
81
  </tr>
82
  <tr>
83
+ <th>
84
+ <label for="wcv_bank_iban">
85
+ <?php _e( 'IBAN', 'wc-vendors' ); ?>
86
+ </label>
87
+ </th>
88
+ <td>
89
+ <input type="text" name="wcv_bank_iban" id="wcv_bank_iban"
90
  value="<?php echo get_user_meta( $user_id, 'wcv_bank_iban', true ); ?>"
91
  class="regular-text">
92
  </td>
93
  </tr>
94
  <tr>
95
+ <th>
96
+ <label for="wcv_bank_bic_swift">
97
+ <?php _e( 'BIC/SWIFT', 'wc-vendors' ); ?>
98
+ </label>
99
+ </th>
100
+ <td>
101
+ <input type="text" name="wcv_bank_bic_swift" id="wcv_bank_bic_swift"
102
  value="<?php echo get_user_meta( $user_id, 'wcv_bank_bic_swift', true ); ?>"
103
  class="regular-text">
104
  </td>
107
 
108
  <?php endif; ?>
109
 
 
110
  <tr>
111
+ <th>
112
+ <label for="pv_shop_name">
113
+ <?php _e( 'Shop Name', 'wc-vendors' ); ?>
114
+ </label>
115
+ </th>
116
+ <td>
117
+ <input type="text" name="pv_shop_name" id="pv_shop_name" placeholder="Your shop name"
118
+ value="<?php echo get_user_meta( $user_id, 'pv_shop_name', true ); ?>">
119
+ <p class="description">
120
+ <?php _e( 'Your shop name is public and must be unique.', 'wc-vendors' ); ?>
121
+ </p>
122
  </td>
123
  </tr>
124
+
125
  <?php do_action( 'wcvendors_settings_after_shop_name' ); ?>
126
 
127
  <tr>
128
+ <th>
129
+ <label for="pv_seller_info_unhtml">
130
+ <?php echo apply_filters( 'wcvendors_seller_info_label', __( 'Seller info', 'wc-vendors' ) ); ?>
131
+ </label>
132
+ </th>
133
  <td>
134
  <?php
135
 
145
  <?php
146
  }
147
  ?>
148
+ <p class="description">
149
+ <?php _e( 'This is displayed on each of your products.', 'wc-vendors' ); ?>
150
+ </p>
151
  </td>
152
  </tr>
153
+
154
  <?php do_action( 'wcvendors_settings_after_seller_info' ); ?>
155
+
156
+ <?php if ( $shop_description !== 'false' ) : ?>
157
+
158
  <tr>
159
+ <th>
160
+ <label for="pv_shop_description_unhtml">
161
+ <?php _e( 'Shop Description', 'wc-vendors' ); ?>
162
+ </label>
163
+ </th>
164
  <td>
165
  <?php
166
 
176
  <?php
177
  }
178
  ?>
179
+ <p class="description">
180
+ <?php printf( __( 'This is displayed on your <a href="%s">shop page</a>.', 'wc-vendors' ), $shop_page ); ?>
181
+ </p>
182
  </td>
183
  </tr>
184
 
185
  <?php do_action( 'wcvendors_settings_after_shop_description' ); ?>
186
+
187
+ <?php endif; ?>
188
+
189
  <tr>
190
+ <td colspan="2">
191
+ <?php wp_nonce_field( 'save-shop-settings-admin', 'wc-vendors-nonce' ); ?>
192
  <input type="submit" class="button button-primary" name="vendor_application_submit"
193
+ value="<?php _e( 'Save Shop Settings', 'wc-vendors' ); ?>">
194
  </td>
195
  </tr>
196
+ </table>
197
+ </form>
198
  </div>
languages/wc-vendors.pot CHANGED
@@ -794,27 +794,27 @@ msgstr ""
794
  msgid "PayPal Email"
795
  msgstr ""
796
 
797
- #: classes/admin/class-wcv-commissions-sum-csv-exporter.php:46, classes/admin/views/html-vendor-meta.php:54, classes/admin/views/html-vendor-settings-page.php:29
798
  msgid "Bank Account Name"
799
  msgstr ""
800
 
801
- #: classes/admin/class-wcv-commissions-sum-csv-exporter.php:47, classes/admin/views/html-vendor-meta.php:62, classes/admin/views/html-vendor-settings-page.php:37
802
  msgid "Bank Account Number"
803
  msgstr ""
804
 
805
- #: classes/admin/class-wcv-commissions-sum-csv-exporter.php:48, classes/admin/views/html-vendor-meta.php:70, classes/admin/views/html-vendor-settings-page.php:45, templates/dashboard/settings/settings.php:59
806
  msgid "Bank Name"
807
  msgstr ""
808
 
809
- #: classes/admin/class-wcv-commissions-sum-csv-exporter.php:49, classes/admin/views/html-vendor-meta.php:77, classes/admin/views/html-vendor-settings-page.php:53, templates/dashboard/settings/settings.php:67
810
  msgid "Routing Number"
811
  msgstr ""
812
 
813
- #: classes/admin/class-wcv-commissions-sum-csv-exporter.php:50, classes/admin/views/html-vendor-meta.php:85, classes/admin/views/html-vendor-settings-page.php:61, templates/dashboard/settings/settings.php:72
814
  msgid "IBAN"
815
  msgstr ""
816
 
817
- #: classes/admin/class-wcv-commissions-sum-csv-exporter.php:51, classes/admin/views/html-vendor-meta.php:92, classes/admin/views/html-vendor-settings-page.php:69
818
  msgid "BIC/SWIFT"
819
  msgstr ""
820
 
@@ -2201,7 +2201,7 @@ msgstr ""
2201
  msgid "Shipping override for %s"
2202
  msgstr ""
2203
 
2204
- #: classes/admin/views/html-vendor-meta.php:158, classes/admin/views/html-vendor-settings-page.php:91, templates/dashboard/settings/seller-info.php:20
2205
  msgid "Seller info"
2206
  msgstr ""
2207
 
@@ -2209,35 +2209,35 @@ msgstr ""
2209
  msgid "Shop description"
2210
  msgstr ""
2211
 
2212
- #: classes/admin/views/html-vendor-settings-page.php:11, templates/dashboard/settings/paypal-email-form.php:18
2213
  msgid "PayPal Address"
2214
  msgstr ""
2215
 
2216
- #: classes/admin/views/html-vendor-settings-page.php:16
2217
  msgid "Your PayPal address can be used to send you your commission."
2218
  msgstr ""
2219
 
2220
- #: classes/admin/views/html-vendor-settings-page.php:82, templates/dashboard/settings/shop-name.php:18
2221
  msgid "Shop Name"
2222
  msgstr ""
2223
 
2224
- #: classes/admin/views/html-vendor-settings-page.php:85, templates/dashboard/settings/shop-name.php:19
2225
  msgid "Your shop name is public and must be unique."
2226
  msgstr ""
2227
 
2228
- #: classes/admin/views/html-vendor-settings-page.php:107, templates/dashboard/settings/seller-info.php:21
2229
  msgid "This is displayed on each of your products."
2230
  msgstr ""
2231
 
2232
- #: classes/admin/views/html-vendor-settings-page.php:113, templates/dashboard/settings/shop-description.php:18
2233
  msgid "Shop Description"
2234
  msgstr ""
2235
 
2236
- #: classes/admin/views/html-vendor-settings-page.php:129, templates/dashboard/settings/shop-description.php:19
2237
  msgid "This is displayed on your <a href=\"%s\">shop page</a>."
2238
  msgstr ""
2239
 
2240
- #: classes/admin/views/html-vendor-settings-page.php:139
2241
  msgid "Save Shop Settings"
2242
  msgstr ""
2243
 
794
  msgid "PayPal Email"
795
  msgstr ""
796
 
797
+ #: classes/admin/class-wcv-commissions-sum-csv-exporter.php:46, classes/admin/views/html-vendor-meta.php:54, classes/admin/views/html-vendor-settings-page.php:37
798
  msgid "Bank Account Name"
799
  msgstr ""
800
 
801
+ #: classes/admin/class-wcv-commissions-sum-csv-exporter.php:47, classes/admin/views/html-vendor-meta.php:62, classes/admin/views/html-vendor-settings-page.php:49
802
  msgid "Bank Account Number"
803
  msgstr ""
804
 
805
+ #: classes/admin/class-wcv-commissions-sum-csv-exporter.php:48, classes/admin/views/html-vendor-meta.php:70, classes/admin/views/html-vendor-settings-page.php:61, templates/dashboard/settings/settings.php:59
806
  msgid "Bank Name"
807
  msgstr ""
808
 
809
+ #: classes/admin/class-wcv-commissions-sum-csv-exporter.php:49, classes/admin/views/html-vendor-meta.php:77, classes/admin/views/html-vendor-settings-page.php:73, templates/dashboard/settings/settings.php:67
810
  msgid "Routing Number"
811
  msgstr ""
812
 
813
+ #: classes/admin/class-wcv-commissions-sum-csv-exporter.php:50, classes/admin/views/html-vendor-meta.php:85, classes/admin/views/html-vendor-settings-page.php:85, templates/dashboard/settings/settings.php:72
814
  msgid "IBAN"
815
  msgstr ""
816
 
817
+ #: classes/admin/class-wcv-commissions-sum-csv-exporter.php:51, classes/admin/views/html-vendor-meta.php:92, classes/admin/views/html-vendor-settings-page.php:97
818
  msgid "BIC/SWIFT"
819
  msgstr ""
820
 
2201
  msgid "Shipping override for %s"
2202
  msgstr ""
2203
 
2204
+ #: classes/admin/views/html-vendor-meta.php:158, classes/admin/views/html-vendor-settings-page.php:130, templates/dashboard/settings/seller-info.php:20
2205
  msgid "Seller info"
2206
  msgstr ""
2207
 
2209
  msgid "Shop description"
2210
  msgstr ""
2211
 
2212
+ #: classes/admin/views/html-vendor-settings-page.php:13, templates/dashboard/settings/paypal-email-form.php:18
2213
  msgid "PayPal Address"
2214
  msgstr ""
2215
 
2216
+ #: classes/admin/views/html-vendor-settings-page.php:21
2217
  msgid "Your PayPal address can be used to send you your commission."
2218
  msgstr ""
2219
 
2220
+ #: classes/admin/views/html-vendor-settings-page.php:113, templates/dashboard/settings/shop-name.php:18
2221
  msgid "Shop Name"
2222
  msgstr ""
2223
 
2224
+ #: classes/admin/views/html-vendor-settings-page.php:120, templates/dashboard/settings/shop-name.php:19
2225
  msgid "Your shop name is public and must be unique."
2226
  msgstr ""
2227
 
2228
+ #: classes/admin/views/html-vendor-settings-page.php:149, templates/dashboard/settings/seller-info.php:21
2229
  msgid "This is displayed on each of your products."
2230
  msgstr ""
2231
 
2232
+ #: classes/admin/views/html-vendor-settings-page.php:161, templates/dashboard/settings/shop-description.php:18
2233
  msgid "Shop Description"
2234
  msgstr ""
2235
 
2236
+ #: classes/admin/views/html-vendor-settings-page.php:180, templates/dashboard/settings/shop-description.php:19
2237
  msgid "This is displayed on your <a href=\"%s\">shop page</a>."
2238
  msgstr ""
2239
 
2240
+ #: classes/admin/views/html-vendor-settings-page.php:193
2241
  msgid "Save Shop Settings"
2242
  msgstr ""
2243
 
package.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "name": "wc-vendors",
3
- "version": "2.1.8",
4
  "private": true,
5
  "dependencies": {},
6
  "devDependencies": {
1
  {
2
  "name": "wc-vendors",
3
+ "version": "2.1.9",
4
  "private": true,
5
  "dependencies": {},
6
  "devDependencies": {
readme.txt CHANGED
@@ -1,13 +1,15 @@
1
  === WC Vendors Marketplace - The Multivendor Marketplace Solution for WooCommerce ===
2
  Contributors: digitalchild, benwcv
3
- Tags: best marketplace, multi vendor marketplace, multi vendor, multi seller, woocommerce vendor, woocommerce marketplace, product vendors, vendor, vendors, wc multivendor, commissions, commission rate
4
  Donate link: https://www.wcvendors.com/
5
  Author URI: https://www.wcvendors.com/
6
  Plugin URI: https://www.wcvendors.com/
7
  Requires at least: 4.4.0
8
  Requires PHP: 5.6
9
- Tested up to: 5.1
10
- Stable tag: 2.1.8
 
 
11
  License: GPLv2 or later
12
 
13
  The number one most downloaded marketplace plugin for WooCommerce. Now you can allow anyone to open a store on your WooCommerce site!
@@ -28,13 +30,10 @@ WC Vendors Marketplace was released to the market in October of 2014 having gott
28
 
29
  == Announcements ==
30
 
31
- * We are compatible with WordPress 5.0 - But please be sure to check everything on a staging server before upgrading !
32
  * The plugin name has been updated. It is now called WC Vendors Marketplace. <a href="www.wcvendors.com/2018/07/wc-vendors-marketplace/?utm_campaign=annoucements?utm_source=wporg"">Read about it here</a>.
33
  * Questions about GDPR and WC Vendors Marketplace? Please read our recent blog post <a href="https://www.wcvendors.com/2018/05/gdpr-and-wc-vendors/?utm_campaign=announcements?utm_source=wporg">GDPR and WC Vendors</a>.
34
- * Please read our recent blog post <a href="https://www.wcvendors.com/2018/05/payments-explained/?utm_campaign=announcements?utm_source=wporg">Payments Explained</a> for solutions to your vendor commission payments. Including Stripe, Paypal and others.
35
- * WC Vendors 2.0 is a major update, this will affect some stores using other WC Vendors integrations.
36
- * PayPal has deprecated Adaptive Payments as of September 1st 2017. This will soon cease to function. We provide an instant payment solution via our <a href="https://www.wcvendors.com/product/wc-vendors-pro/?utm_campaign=annoucements?utm_source=wporg">Stripe Gateway</a> however there are 3rd party extensions from MangoPay and Escrow that also provide vendor commission payouts.
37
-
38
 
39
  == Features ==
40
 
@@ -95,6 +94,77 @@ The following features are part of <a href="https://www.wcvendors.com/product/wc
95
 
96
  See our full comparison of free vs pro here <a href="https://www.wcvendors.com/home/comparison/?&utm_campaign=description?utm_source=wporg">Compare free and pro</a>
97
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  = Translations =
99
 
100
  We currently ship WC Vendors Marketplace free with the following language translations. If you would like translate WC Vendors Marketplace into your language we would be more than happy to include it in our next release. Please use https://translate.wordpress.org/locale/en/default/wp-plugins/wc-vendors
@@ -157,6 +227,14 @@ WC Vendors Marketplace does not work with multisite WordPress. There are no plan
157
 
158
  == Changelog ==
159
 
 
 
 
 
 
 
 
 
160
  = Version 2.1.8 - 18th April 2019 =
161
 
162
  * Fixed: Vendor featured product shortcode display the same products for every vendor #553
1
  === WC Vendors Marketplace - The Multivendor Marketplace Solution for WooCommerce ===
2
  Contributors: digitalchild, benwcv
3
+ Tags: woocommerce marketplace, marketplace, woocommerce, multi vendor marketplace, multi vendor, multi seller, woocommerce vendor, product vendors, vendor, vendors, wc multivendor, commissions, commission rate
4
  Donate link: https://www.wcvendors.com/
5
  Author URI: https://www.wcvendors.com/
6
  Plugin URI: https://www.wcvendors.com/
7
  Requires at least: 4.4.0
8
  Requires PHP: 5.6
9
+ Tested up to: 5.2
10
+ WC requires at least: 3.3.0
11
+ WC tested up to: 3.6.2
12
+ Stable tag: 2.1.9
13
  License: GPLv2 or later
14
 
15
  The number one most downloaded marketplace plugin for WooCommerce. Now you can allow anyone to open a store on your WooCommerce site!
30
 
31
  == Announcements ==
32
 
33
+ * Want to know how vendors get paid? Be sure to read our <a href="https://www.wcvendors.com/2018/05/payments-explained/?utm_campaign=annoucements?utm_source=wporg">Payments Explained</a> article available on our website, solutions including Stripe, Paypal, Mangopay and more are available.
34
  * The plugin name has been updated. It is now called WC Vendors Marketplace. <a href="www.wcvendors.com/2018/07/wc-vendors-marketplace/?utm_campaign=annoucements?utm_source=wporg"">Read about it here</a>.
35
  * Questions about GDPR and WC Vendors Marketplace? Please read our recent blog post <a href="https://www.wcvendors.com/2018/05/gdpr-and-wc-vendors/?utm_campaign=announcements?utm_source=wporg">GDPR and WC Vendors</a>.
36
+ * Please read our recent blog post <a href="https://www.wcvendors.com/2018/05/payments-explained/?utm_campaign=announcements?utm_source=wporg">Payments Explained</a> for
 
 
 
37
 
38
  == Features ==
39
 
94
 
95
  See our full comparison of free vs pro here <a href="https://www.wcvendors.com/home/comparison/?&utm_campaign=description?utm_source=wporg">Compare free and pro</a>
96
 
97
+ == Build your marketplace today ==
98
+
99
+ With WC Vendors Marketplace there is no restrictions on the number of vendors or products your marketplace can create. Your vendors will be able to create a marketplaces selling a range of different products such as
100
+
101
+ * Physical products
102
+ * Downloadable
103
+ * Variable products
104
+ * Booking products with our <a href="https://www.wcvendors.com/product/woocommerce-bookings-integration/?&utm_campaign=description?utm_source=wporg">WC Vendors WooCommerce Bookings plugin</a>
105
+ * Auctions with our <a href="https://www.wcvendors.com/product/woocommerce-simple-auctions-integration/?&utm_campaign=description?utm_source=wporg">WC Vendors WooCommerce Simple Auctions plugin</a>
106
+
107
+ This allows you to create all kinds of marketplaces such as
108
+
109
+ * Physical goods marketplaces like a furntiure store
110
+ * Digital download marketplaces selling music or photos
111
+ * A booking marketplace to sell cooking classes
112
+ * An auction site like ebay
113
+
114
+ == Multiple ways to earn money with your marketplace ==
115
+
116
+ WC Vendors Marketplace has an advanced commission system that allows you to set commisions for a variaty of situations
117
+
118
+ = Commission Types =
119
+
120
+ * Percentage
121
+ * Percentate + fee (Pro)
122
+ * Fixed (Pro)
123
+ * Fixed + fee (Pro)
124
+
125
+ Tiered based commission systems
126
+
127
+ * Sales by vendor (Pro)
128
+ * Sales by Product (Pro)
129
+ * Product Price (Pro)
130
+
131
+ <a href="https://docs.wcvendors.com/knowledge-base/wc-vendors-pro-commission/">Read about our commissions here</a>
132
+
133
+ = WC Vendors Membership =
134
+
135
+ WC Vendors Membership allows you to create and sell membership plans to your vendors. Setting different limits for your vendors on what products they can sell. Features include
136
+
137
+ * Create as many plans as you like
138
+ * Plan based commissions
139
+ * Set limits on products, categories, files and storage
140
+ * Easy to use subscription system for your vendors
141
+ * With the use of WooCommerce Subscriptions, you can setup a membership marketplace today!
142
+
143
+ <a href="https://www.wcvendors.com/product/wc-vendors-membership/?&utm_campaign=description?utm_source=wporg">Create your vendor membership site today</a>
144
+
145
+ == Compatible Plugins ==
146
+
147
+ We encourage 3rd party developers to work with us to create great extensions that work with our products. We keep an updated list of <a href="https://www.wcvendors.com/home/compatible-plugins/?utm_source=wporg">compatible plugins</a> on our website as well as here. If you've built a plugin for WC Vendors products, please be sure to let us know!
148
+
149
+ = Vendor Payment Gateways =
150
+
151
+ * <a href="https://www.wcvendors.com/product/stripe-commissions-gateway/?&utm_campaign=description?utm_source=wporg">Stripe Connect Commissions & Gateway</a>
152
+ * <a href="https://www.wcvendors.com/product/payouts-for-wc-vendors/?&utm_campaign=description?utm_source=wporg">Payouts for WC Vendors</a>
153
+ * <a href="https://www.wcvendors.com/product/mangopay-woocommerce/?&utm_campaign=description?utm_source=wporg">MangoPay for WooCommerce</a>
154
+ * <a href="https://www.wcvendors.com/product/escrow-for-woocommerce//?&utm_campaign=description?utm_source=wporg">Escorw for WooCommerce</a>
155
+ * <a href="https://www.wcvendors.com/product/mollie-connect-wc-vendors/?&utm_campaign=description?utm_source=wporg">Mollie Connect for WC Vendors</a>
156
+
157
+ = Shipping =
158
+
159
+ * <a href="https://www.wcvendors.com/product/epeken-all-kurir-plugin-for-woocommerce/?&utm_campaign=description?utm_source=wporg">Epeken All Kurir Plugin for Woocommerce</a>
160
+ * <a href="https://www.wcvendors.com/product/marketship/?&utm_campaign=description?utm_source=wporg">Marketship</a>
161
+ * <a href="https://www.wcvendors.com/product/multi-carrier-shipping-plugin-for-woocommerce/?&utm_campaign=description?utm_source=wporg">Multi-Carrier Shipping Plugin for WooCommerce</a>
162
+ * <a href="https://www.wcvendors.com/product/table-rate-shipping/?&utm_campaign=description?utm_source=wporg">Table Rate Shipping for WC Vendors</a>
163
+ * <a href="https://www.wcvendors.com/product/woocommerce-fedex-shipping-plugin-with-print-label/?&utm_campaign=description?utm_source=wporg">WooCommerce FedEx Shipping Plugin with Print Label</a>
164
+ * <a href="https://www.wcvendors.com/product/woocommerce-ups-shipping-plugin-with-print-label/?&utm_campaign=description?utm_source=wporg">WooCommerce UPS Shipping Plugin with Print Label</a>
165
+
166
+ <a href="https://www.wcvendors.com/home/compatible-plugins/?utm_source=wporg">And many many more !</a>
167
+
168
  = Translations =
169
 
170
  We currently ship WC Vendors Marketplace free with the following language translations. If you would like translate WC Vendors Marketplace into your language we would be more than happy to include it in our next release. Please use https://translate.wordpress.org/locale/en/default/wp-plugins/wc-vendors
227
 
228
  == Changelog ==
229
 
230
+ = Version 2.1.9 - 9th may 2019 =
231
+
232
+ * Updated: Tested to 5.6 and WooCommerce 3.6.x
233
+ * Updated: Removed development files from release
234
+ * Updated: Language file
235
+ * Fixed: Commission tab inside Product Data box style problem #549
236
+ * Fixed: Invalid vendor settings form markup thanks to bporcelli
237
+
238
  = Version 2.1.8 - 18th April 2019 =
239
 
240
  * Fixed: Vendor featured product shortcode display the same products for every vendor #553