Version Description
Download this release
Release Info
Developer | digitalchild |
Plugin | WC Vendors |
Version | 2.1.16 |
Comparing to | |
See all releases |
Code changes from version 2.1.15 to 2.1.16
- assets/js/wcv-admin-login.js +2 -2
- changelog.txt +7 -0
- class-wc-vendors.php +4 -4
- classes/admin/class-wcv-admin-extensions.php +2 -3
- classes/admin/emails/class-emails.php +6 -6
- classes/admin/views/html-admin-page-extensions.php +30 -14
- languages/wc-vendors.pot +51 -47
- readme.txt +15 -6
assets/js/wcv-admin-login.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
jQuery( function () {
|
2 |
-
if (
|
3 |
if (jQuery('#apply_for_vendor').is(':checked')) {
|
4 |
jQuery('.agree-to-terms-container').show();
|
5 |
}
|
@@ -8,4 +8,4 @@ jQuery( function () {
|
|
8 |
jQuery('.agree-to-terms-container').slideToggle();
|
9 |
});
|
10 |
}
|
11 |
-
});
|
1 |
jQuery( function () {
|
2 |
+
if ( jQuery( '#terms_and_conditions_visibility' ).val() == 'no' ){
|
3 |
if (jQuery('#apply_for_vendor').is(':checked')) {
|
4 |
jQuery('.agree-to-terms-container').show();
|
5 |
}
|
8 |
jQuery('.agree-to-terms-container').slideToggle();
|
9 |
});
|
10 |
}
|
11 |
+
});
|
changelog.txt
CHANGED
@@ -1,5 +1,12 @@
|
|
1 |
Changelog for WC Vendors Marketplace
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
Version 2.1.15 - 13th September 2019
|
4 |
|
5 |
* Added: Vendor to WooCommerce Product Import/Export for admins
|
1 |
Changelog for WC Vendors Marketplace
|
2 |
|
3 |
+
Version 2.1.16 - 16th October 2019
|
4 |
+
|
5 |
+
* Updated: Extensions page product links
|
6 |
+
* Updated: Tested to
|
7 |
+
* Fixed: Low/out of stock emails not sending #593
|
8 |
+
* Fixed: jQuery reference
|
9 |
+
|
10 |
Version 2.1.15 - 13th September 2019
|
11 |
|
12 |
* Added: Vendor to WooCommerce Product Import/Export for admins
|
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.
|
11 |
* Requires at least: 5.0.0
|
12 |
-
* Tested up to: 5.2.
|
13 |
* WC requires at least: 3.3.0
|
14 |
-
* WC tested up to: 3.
|
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.
|
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.16
|
11 |
* Requires at least: 5.0.0
|
12 |
+
* Tested up to: 5.2.4
|
13 |
* WC requires at least: 3.3.0
|
14 |
+
* WC tested up to: 3.8.0
|
15 |
*
|
16 |
* Text Domain: wc-vendors
|
17 |
* Domain Path: /languages/
|
97 |
*/
|
98 |
class WC_Vendors {
|
99 |
|
100 |
+
public $version = '2.1.16';
|
101 |
|
102 |
/**
|
103 |
* @var
|
classes/admin/class-wcv-admin-extensions.php
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
/**
|
3 |
* WC Vendors Extensions Page
|
4 |
*
|
5 |
-
* @author
|
6 |
* @category Admin
|
7 |
-
* @package
|
8 |
* @version 2.5.0
|
9 |
*/
|
10 |
|
@@ -18,7 +18,6 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
18 |
class WCVendors_Admin_Extensions {
|
19 |
|
20 |
public static function output() {
|
21 |
-
|
22 |
include_once dirname( __FILE__ ) . '/views/html-admin-page-extensions.php';
|
23 |
}
|
24 |
|
2 |
/**
|
3 |
* WC Vendors Extensions Page
|
4 |
*
|
5 |
+
* @author WC Vendors
|
6 |
* @category Admin
|
7 |
+
* @package WCVendors/Admin
|
8 |
* @version 2.5.0
|
9 |
*/
|
10 |
|
18 |
class WCVendors_Admin_Extensions {
|
19 |
|
20 |
public static function output() {
|
|
|
21 |
include_once dirname( __FILE__ ) . '/views/html-admin-page-extensions.php';
|
22 |
}
|
23 |
|
classes/admin/emails/class-emails.php
CHANGED
@@ -141,14 +141,14 @@ class WCV_Emails {
|
|
141 |
public function vendor_stock_email( $emails, $product ) {
|
142 |
|
143 |
if ( ! is_a( $product, 'WC_Product' ) ) {
|
144 |
-
return;
|
145 |
}
|
146 |
|
147 |
$post = get_post( $product->get_id() );
|
148 |
|
149 |
if ( WCV_Vendors::is_vendor( $post->post_author ) ) {
|
150 |
$vendor_data = get_userdata( $post->post_author );
|
151 |
-
$vendor_email = $vendor_data->user_email;
|
152 |
$emails .= ',' . $vendor_email;
|
153 |
}
|
154 |
|
@@ -164,9 +164,9 @@ class WCV_Emails {
|
|
164 |
*/
|
165 |
public function vendor_low_stock_email( $emails, $product ) {
|
166 |
if ( 'no' === get_option( 'wcvendors_notify_low_stock', 'yes' ) ) {
|
167 |
-
return;
|
168 |
}
|
169 |
-
$this->vendor_stock_email( $emails, $product );
|
170 |
}
|
171 |
|
172 |
/**
|
@@ -177,9 +177,9 @@ class WCV_Emails {
|
|
177 |
*/
|
178 |
public function vendor_no_stock_email( $emails, $product ) {
|
179 |
if ( 'no' === get_option( 'wcvendors_notify_low_stock', 'yes' ) ) {
|
180 |
-
return;
|
181 |
}
|
182 |
-
$this->vendor_stock_email( $emails, $product );
|
183 |
}
|
184 |
|
185 |
/**
|
141 |
public function vendor_stock_email( $emails, $product ) {
|
142 |
|
143 |
if ( ! is_a( $product, 'WC_Product' ) ) {
|
144 |
+
return $emails;
|
145 |
}
|
146 |
|
147 |
$post = get_post( $product->get_id() );
|
148 |
|
149 |
if ( WCV_Vendors::is_vendor( $post->post_author ) ) {
|
150 |
$vendor_data = get_userdata( $post->post_author );
|
151 |
+
$vendor_email = trim( $vendor_data->user_email );
|
152 |
$emails .= ',' . $vendor_email;
|
153 |
}
|
154 |
|
164 |
*/
|
165 |
public function vendor_low_stock_email( $emails, $product ) {
|
166 |
if ( 'no' === get_option( 'wcvendors_notify_low_stock', 'yes' ) ) {
|
167 |
+
return $emails;
|
168 |
}
|
169 |
+
return $this->vendor_stock_email( $emails, $product );
|
170 |
}
|
171 |
|
172 |
/**
|
177 |
*/
|
178 |
public function vendor_no_stock_email( $emails, $product ) {
|
179 |
if ( 'no' === get_option( 'wcvendors_notify_low_stock', 'yes' ) ) {
|
180 |
+
return $emails;
|
181 |
}
|
182 |
+
return $this->vendor_stock_email( $emails, $product );
|
183 |
}
|
184 |
|
185 |
/**
|
classes/admin/views/html-admin-page-extensions.php
CHANGED
@@ -15,6 +15,8 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
15 |
<h1><?php _e( 'Upgrade your marketplace today!', 'wc-vendors' ); ?></h1>
|
16 |
<br/>
|
17 |
|
|
|
|
|
18 |
<div class="addons-wcs-banner-block">
|
19 |
<div class="addons-wcs-banner-block-image">
|
20 |
<img class="addons-img" src="<?php echo wcv_assets_url; ?>images/extensions/screenshot-1.png"
|
@@ -56,7 +58,16 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
56 |
</div>
|
57 |
</div>
|
58 |
|
|
|
|
|
59 |
<ul class="products">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
<li class="product">
|
61 |
<a href="https://www.wcvendors.com/product/wc-vendors-membership/?utm_source=plugin&utm_medium=addons&utm_campaign=extensions">
|
62 |
<h2><?php _e( 'WC Vendors Membership', 'wc-vendors' ); ?></h2>
|
@@ -64,40 +75,45 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
64 |
<span class="product-addons-button product-addons-button-solid"><?php _e( 'From $89', 'wc-vendors' ); ?></span>
|
65 |
</a>
|
66 |
</li>
|
|
|
|
|
67 |
<li class="product">
|
68 |
-
<a href="https://www.wcvendors.com/product/
|
69 |
-
<h2><?php _e( 'WC Vendors
|
70 |
-
|
71 |
-
|
|
|
72 |
</a>
|
73 |
</li>
|
74 |
<li class="product">
|
75 |
-
<a href="https://www.wcvendors.com/product/woocommerce-
|
76 |
-
<h2><?php _e( 'WooCommerce
|
77 |
-
<span class="price"><?php _e( 'From $
|
78 |
-
<p><?php _e( 'Allow vendors to create
|
79 |
-
<span class="product-addons-button product-addons-button-solid"><?php _e( 'From $
|
80 |
</a>
|
81 |
</li>
|
|
|
|
|
82 |
<li class="product">
|
83 |
<a href="https://www.wcvendors.com/product/woocommerce-simple-auctions-integration/?utm_source=plugin&utm_medium=addons&utm_campaign=extensions">
|
84 |
<h2><?php _e( 'WooCommerce Simple Auctions', 'wc-vendors' ); ?></h2>
|
85 |
-
<p><?php _e( 'Integreate WooCommerce Simple Auctions into the WC Vendors Pro dashboard.', 'wc-vendors' ); ?> </p>
|
86 |
-
<span class="product-addons-button product-addons-button-solid"><?php _e( 'From $
|
87 |
</a>
|
88 |
</li>
|
89 |
<li class="product">
|
90 |
<a href="https://www.wcvendors.com/home/compatible-plugins/?utm_source=plugin&utm_medium=addons&utm_campaign=extensions">
|
91 |
<h2><?php _e( 'Compatible 3rd party plugins', 'wc-vendors' ); ?></h2>
|
92 |
-
<p><?php _e( '
|
93 |
-
<span class="product-addons-button product-addons-button-solid"><?php _e( 'View
|
94 |
</a>
|
95 |
</li>
|
96 |
|
97 |
</ul>
|
98 |
|
99 |
|
100 |
-
<p><?php printf( __( 'Our list of
|
101 |
|
102 |
|
103 |
</div>
|
15 |
<h1><?php _e( 'Upgrade your marketplace today!', 'wc-vendors' ); ?></h1>
|
16 |
<br/>
|
17 |
|
18 |
+
<?php if ( ! class_exists( 'WCVendors_Pro' ) ) : ?>
|
19 |
+
|
20 |
<div class="addons-wcs-banner-block">
|
21 |
<div class="addons-wcs-banner-block-image">
|
22 |
<img class="addons-img" src="<?php echo wcv_assets_url; ?>images/extensions/screenshot-1.png"
|
58 |
</div>
|
59 |
</div>
|
60 |
|
61 |
+
<?php endif; ?>
|
62 |
+
|
63 |
<ul class="products">
|
64 |
+
<li class="product">
|
65 |
+
<a href="https://www.wcvendors.com/product/wc-vendors-stripe-connect/?utm_source=plugin&utm_medium=addons&utm_campaign=extensions">
|
66 |
+
<h2><?php _e( 'WC Vendors Stripe Connect', 'wc-vendors' ); ?></h2>
|
67 |
+
<p><?php _e( 'Take credit card payments and pay your vendors their commissions instantly when the customer purchases. No need to manually pay your vendors.', 'wc-vendors' ); ?></p>
|
68 |
+
<span class="product-addons-button product-addons-button-solid"><?php _e( 'From $89', 'wc-vendors' ); ?></span>
|
69 |
+
</a>
|
70 |
+
</li>
|
71 |
<li class="product">
|
72 |
<a href="https://www.wcvendors.com/product/wc-vendors-membership/?utm_source=plugin&utm_medium=addons&utm_campaign=extensions">
|
73 |
<h2><?php _e( 'WC Vendors Membership', 'wc-vendors' ); ?></h2>
|
75 |
<span class="product-addons-button product-addons-button-solid"><?php _e( 'From $89', 'wc-vendors' ); ?></span>
|
76 |
</a>
|
77 |
</li>
|
78 |
+
</ul>
|
79 |
+
<ul class="products">
|
80 |
<li class="product">
|
81 |
+
<a href="https://www.wcvendors.com/product/wc-vendors-woocommerce-bookings/?utm_source=plugin&utm_medium=addons&utm_campaign=extensions">
|
82 |
+
<h2><?php _e( 'WC Vendors WooCommerce Bookings<', 'wc-vendors' ); ?>/h2>
|
83 |
+
<span class="price"><?php _e( 'From $89.00', 'wc-vendors' ); ?></span>
|
84 |
+
<p><?php _e( 'Allow vendors to create bookings. Integrate WooCommerce bookings into the WC Vendors Pro Dashboard.', 'wc-vendors' ); ?></p>
|
85 |
+
<span class="product-addons-button product-addons-button-solid"><?php _e( 'From $89', 'wc-vendors' ); ?></span>
|
86 |
</a>
|
87 |
</li>
|
88 |
<li class="product">
|
89 |
+
<a href="https://www.wcvendors.com/product/wc-vendors-woocommerce-subscriptions/?utm_source=plugin&utm_medium=addons&utm_campaign=extensions">
|
90 |
+
<h2><?php _e( 'WC Vendors WooCommerce Subscriptions<', 'wc-vendors' ); ?>/h2>
|
91 |
+
<span class="price"><?php _e( 'From $89.00', 'wc-vendors' ); ?></span>
|
92 |
+
<p><?php _e( 'Allow vendors to create subscriptions. Integrates WooCommerce subscriptions into the WC Vendors Pro Dashboard.', 'wc-vendors' ); ?></p>
|
93 |
+
<span class="product-addons-button product-addons-button-solid"><?php _e( 'From $89', 'wc-vendors' ); ?></span>
|
94 |
</a>
|
95 |
</li>
|
96 |
+
</ul>
|
97 |
+
<ul class="products">
|
98 |
<li class="product">
|
99 |
<a href="https://www.wcvendors.com/product/woocommerce-simple-auctions-integration/?utm_source=plugin&utm_medium=addons&utm_campaign=extensions">
|
100 |
<h2><?php _e( 'WooCommerce Simple Auctions', 'wc-vendors' ); ?></h2>
|
101 |
+
<p><?php _e( 'Allow vendors to create auctions. Integreate WooCommerce Simple Auctions into the WC Vendors Pro dashboard.', 'wc-vendors' ); ?> </p>
|
102 |
+
<span class="product-addons-button product-addons-button-solid"><?php _e( 'From $49', 'wc-vendors' ); ?></span>
|
103 |
</a>
|
104 |
</li>
|
105 |
<li class="product">
|
106 |
<a href="https://www.wcvendors.com/home/compatible-plugins/?utm_source=plugin&utm_medium=addons&utm_campaign=extensions">
|
107 |
<h2><?php _e( 'Compatible 3rd party plugins', 'wc-vendors' ); ?></h2>
|
108 |
+
<p><?php _e( 'You can find a selection of compatible plugins with WC Vendors Marketplace and or WC Vendors Pro. <br /><br />They cover a range of areas including vendor payment gateways, shipping, service, support and chat, social media and currency/credit systems.', 'wc-vendors' ); ?></p>
|
109 |
+
<span class="product-addons-button product-addons-button-solid"><?php _e( 'View compatible plugins', 'wc-vendors' ); ?></span><br />
|
110 |
</a>
|
111 |
</li>
|
112 |
|
113 |
</ul>
|
114 |
|
115 |
|
116 |
+
<p><?php printf( __( 'Our list of premium extesnions for WC Vendors can be found on our website. <a href="%s">Click here to view our extensions list.</a>', 'wc-vendors' ), 'https://www.wcvendors.com/plugins/?utm_source=plugin&utm_medium=addons&utm_campaign=extensions' ); ?></p>
|
117 |
|
118 |
|
119 |
</div>
|
languages/wc-vendors.pot
CHANGED
@@ -2200,140 +2200,144 @@ msgstr ""
|
|
2200 |
msgid "Upgrade your marketplace today!"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2204 |
msgid "WC Vendors Pro"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2208 |
msgid "Enhanced your marketplace with pro features and capabilities. Move all your vendors tasks to the frontend. They no longer need or see the WordPress admin. Shipping system included."
|
2209 |
msgstr ""
|
2210 |
|
2211 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2212 |
msgid "Vendors have a main dashboard showing sales reports and recent orders and products."
|
2213 |
msgstr ""
|
2214 |
|
2215 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2216 |
msgid "Vendors have complete front end product management"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2220 |
msgid "Vendors can add their own coupons that only apply to their products"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2224 |
msgid "Vendors have advanced shipment tracking including shipping providers"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2228 |
msgid "Vendors have the ability to print a shipping label with a picking list"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2232 |
msgid "Vendors can add all their own social media profile links"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2236 |
msgid "Vendors can add SEO to their store and products"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2240 |
msgid "Vendors can add their own banner and store icon"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2244 |
msgid "Vendors have a comprehensive shipping system available. Either flat rate or table rate based."
|
2245 |
msgstr ""
|
2246 |
|
2247 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2248 |
msgid "Vendor stores templates are more advanced"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2252 |
msgid "Vendors have more control over their order notes"
|
2253 |
msgstr ""
|
2254 |
|
2255 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2256 |
msgid "Vendors vacation module is included as part of pro not an extra addon"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2260 |
msgid "Admins have multiple commission rate options including percentage, percentage + fee, fixed, fixed + fee."
|
2261 |
msgstr ""
|
2262 |
|
2263 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2264 |
msgid "Admins can set global shipping rates as well as allow different shipping modules per vendor. Setting one as flat rate, while another can be table rate"
|
2265 |
msgstr ""
|
2266 |
|
2267 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2268 |
msgid "Ebay style feedback allows customers to rate the products from the vendors"
|
2269 |
msgstr ""
|
2270 |
|
2271 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2272 |
msgid "Premium ticket based support for all pro users. Annual and lifetime support licenses available."
|
2273 |
msgstr ""
|
2274 |
|
2275 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2276 |
-
msgid "WC Vendors
|
2277 |
msgstr ""
|
2278 |
|
2279 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2280 |
-
msgid "
|
2281 |
msgstr ""
|
2282 |
|
2283 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2284 |
msgid "From $89"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2288 |
-
msgid "WC Vendors
|
|
|
|
|
|
|
|
|
2289 |
msgstr ""
|
2290 |
|
2291 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2292 |
-
msgid "
|
2293 |
msgstr ""
|
2294 |
|
2295 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2296 |
-
msgid "From $
|
2297 |
msgstr ""
|
2298 |
|
2299 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2300 |
-
msgid "WooCommerce
|
2301 |
msgstr ""
|
2302 |
|
2303 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2304 |
-
msgid "
|
2305 |
msgstr ""
|
2306 |
|
2307 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2308 |
-
msgid "Allow vendors to create
|
2309 |
msgstr ""
|
2310 |
|
2311 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2312 |
msgid "WooCommerce Simple Auctions"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2316 |
-
msgid "Integreate WooCommerce Simple Auctions into the WC Vendors Pro dashboard."
|
2317 |
msgstr ""
|
2318 |
|
2319 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2320 |
-
msgid "From $
|
2321 |
msgstr ""
|
2322 |
|
2323 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2324 |
msgid "Compatible 3rd party plugins"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2328 |
-
msgid "
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2332 |
-
msgid "View
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: classes/admin/views/html-admin-page-extensions.php:
|
2336 |
-
msgid "Our list of
|
2337 |
msgstr ""
|
2338 |
|
2339 |
#: classes/admin/views/html-vendor-meta.php:15
|
2200 |
msgid "Upgrade your marketplace today!"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
+
#: classes/admin/views/html-admin-page-extensions.php:30
|
2204 |
msgid "WC Vendors Pro"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
+
#: classes/admin/views/html-admin-page-extensions.php:32
|
2208 |
msgid "Enhanced your marketplace with pro features and capabilities. Move all your vendors tasks to the frontend. They no longer need or see the WordPress admin. Shipping system included."
|
2209 |
msgstr ""
|
2210 |
|
2211 |
+
#: classes/admin/views/html-admin-page-extensions.php:37
|
2212 |
msgid "Vendors have a main dashboard showing sales reports and recent orders and products."
|
2213 |
msgstr ""
|
2214 |
|
2215 |
+
#: classes/admin/views/html-admin-page-extensions.php:38
|
2216 |
msgid "Vendors have complete front end product management"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
+
#: classes/admin/views/html-admin-page-extensions.php:39
|
2220 |
msgid "Vendors can add their own coupons that only apply to their products"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
+
#: classes/admin/views/html-admin-page-extensions.php:40
|
2224 |
msgid "Vendors have advanced shipment tracking including shipping providers"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
+
#: classes/admin/views/html-admin-page-extensions.php:41
|
2228 |
msgid "Vendors have the ability to print a shipping label with a picking list"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
+
#: classes/admin/views/html-admin-page-extensions.php:42
|
2232 |
msgid "Vendors can add all their own social media profile links"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
+
#: classes/admin/views/html-admin-page-extensions.php:43
|
2236 |
msgid "Vendors can add SEO to their store and products"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
+
#: classes/admin/views/html-admin-page-extensions.php:44
|
2240 |
msgid "Vendors can add their own banner and store icon"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
+
#: classes/admin/views/html-admin-page-extensions.php:45
|
2244 |
msgid "Vendors have a comprehensive shipping system available. Either flat rate or table rate based."
|
2245 |
msgstr ""
|
2246 |
|
2247 |
+
#: classes/admin/views/html-admin-page-extensions.php:46
|
2248 |
msgid "Vendor stores templates are more advanced"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
+
#: classes/admin/views/html-admin-page-extensions.php:47
|
2252 |
msgid "Vendors have more control over their order notes"
|
2253 |
msgstr ""
|
2254 |
|
2255 |
+
#: classes/admin/views/html-admin-page-extensions.php:48
|
2256 |
msgid "Vendors vacation module is included as part of pro not an extra addon"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
+
#: classes/admin/views/html-admin-page-extensions.php:49
|
2260 |
msgid "Admins have multiple commission rate options including percentage, percentage + fee, fixed, fixed + fee."
|
2261 |
msgstr ""
|
2262 |
|
2263 |
+
#: classes/admin/views/html-admin-page-extensions.php:50
|
2264 |
msgid "Admins can set global shipping rates as well as allow different shipping modules per vendor. Setting one as flat rate, while another can be table rate"
|
2265 |
msgstr ""
|
2266 |
|
2267 |
+
#: classes/admin/views/html-admin-page-extensions.php:51
|
2268 |
msgid "Ebay style feedback allows customers to rate the products from the vendors"
|
2269 |
msgstr ""
|
2270 |
|
2271 |
+
#: classes/admin/views/html-admin-page-extensions.php:52
|
2272 |
msgid "Premium ticket based support for all pro users. Annual and lifetime support licenses available."
|
2273 |
msgstr ""
|
2274 |
|
2275 |
+
#: classes/admin/views/html-admin-page-extensions.php:66
|
2276 |
+
msgid "WC Vendors Stripe Connect"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
+
#: classes/admin/views/html-admin-page-extensions.php:67
|
2280 |
+
msgid "Take credit card payments and pay your vendors their commissions instantly when the customer purchases. No need to manually pay your vendors."
|
2281 |
msgstr ""
|
2282 |
|
2283 |
+
#: classes/admin/views/html-admin-page-extensions.php:68, classes/admin/views/html-admin-page-extensions.php:75, classes/admin/views/html-admin-page-extensions.php:85, classes/admin/views/html-admin-page-extensions.php:93
|
2284 |
msgid "From $89"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
+
#: classes/admin/views/html-admin-page-extensions.php:73
|
2288 |
+
msgid "WC Vendors Membership"
|
2289 |
+
msgstr ""
|
2290 |
+
|
2291 |
+
#: classes/admin/views/html-admin-page-extensions.php:74
|
2292 |
+
msgid "Earn guaranteed income from your vendors with this easy to use extension. Want to charge your vendors to list products on your marketplace? "
|
2293 |
msgstr ""
|
2294 |
|
2295 |
+
#: classes/admin/views/html-admin-page-extensions.php:82
|
2296 |
+
msgid "WC Vendors WooCommerce Bookings<"
|
2297 |
msgstr ""
|
2298 |
|
2299 |
+
#: classes/admin/views/html-admin-page-extensions.php:83, classes/admin/views/html-admin-page-extensions.php:91
|
2300 |
+
msgid "From $89.00"
|
2301 |
msgstr ""
|
2302 |
|
2303 |
+
#: classes/admin/views/html-admin-page-extensions.php:84
|
2304 |
+
msgid "Allow vendors to create bookings. Integrate WooCommerce bookings into the WC Vendors Pro Dashboard."
|
2305 |
msgstr ""
|
2306 |
|
2307 |
+
#: classes/admin/views/html-admin-page-extensions.php:90
|
2308 |
+
msgid "WC Vendors WooCommerce Subscriptions<"
|
2309 |
msgstr ""
|
2310 |
|
2311 |
+
#: classes/admin/views/html-admin-page-extensions.php:92
|
2312 |
+
msgid "Allow vendors to create subscriptions. Integrates WooCommerce subscriptions into the WC Vendors Pro Dashboard."
|
2313 |
msgstr ""
|
2314 |
|
2315 |
+
#: classes/admin/views/html-admin-page-extensions.php:100
|
2316 |
msgid "WooCommerce Simple Auctions"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
+
#: classes/admin/views/html-admin-page-extensions.php:101
|
2320 |
+
msgid "Allow vendors to create auctions. Integreate WooCommerce Simple Auctions into the WC Vendors Pro dashboard."
|
2321 |
msgstr ""
|
2322 |
|
2323 |
+
#: classes/admin/views/html-admin-page-extensions.php:102
|
2324 |
+
msgid "From $49"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
+
#: classes/admin/views/html-admin-page-extensions.php:107
|
2328 |
msgid "Compatible 3rd party plugins"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
+
#: classes/admin/views/html-admin-page-extensions.php:108
|
2332 |
+
msgid "You can find a selection of compatible plugins with WC Vendors Marketplace and or WC Vendors Pro. <br /><br />They cover a range of areas including vendor payment gateways, shipping, service, support and chat, social media and currency/credit systems."
|
2333 |
msgstr ""
|
2334 |
|
2335 |
+
#: classes/admin/views/html-admin-page-extensions.php:109
|
2336 |
+
msgid "View compatible plugins"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
+
#: classes/admin/views/html-admin-page-extensions.php:116
|
2340 |
+
msgid "Our list of premium extesnions for WC Vendors can be found on our website. <a href=\"%s\">Click here to view our extensions list.</a>"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
#: classes/admin/views/html-vendor-meta.php:15
|
readme.txt
CHANGED
@@ -6,10 +6,10 @@ Author URI: https://www.wcvendors.com/
|
|
6 |
Plugin URI: https://www.wcvendors.com/
|
7 |
Requires at least: 5.0.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.
|
12 |
-
Stable tag: 2.1.
|
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!
|
@@ -25,7 +25,7 @@ The number one most downloaded marketplace plugin for WooCommerce. Now you can a
|
|
25 |
|
26 |
Create your own marketplace and allow vendors to sell products just like etsy, Envato, eBay, or Amazon! You can sell physical, digital or variable products on your marketplace.
|
27 |
|
28 |
-
WC Vendors Marketplace is the best way to create your
|
29 |
|
30 |
= Solutions =
|
31 |
|
@@ -56,8 +56,8 @@ With WC Vendors Marketplace there is no restrictions on the number of vendors or
|
|
56 |
* Physical products
|
57 |
* Digital and Downloadable products
|
58 |
* Variable products
|
59 |
-
* Subscription products with our [WC Vendors Subscriptions
|
60 |
-
* Booking products with our [WC Vendors WooCommerce Bookings plugin](https://www.wcvendors.com/product/woocommerce-bookings
|
61 |
* Auctions with our [WC Vendors WooCommerce Simple Auctions plugin](https://www.wcvendors.com/product/woocommerce-simple-auctions-integration/?&utm_campaign=description?utm_source=wporg)
|
62 |
|
63 |
This allows you to create all kinds of marketplaces such as
|
@@ -128,6 +128,8 @@ Compatible with over 100+ payment gateways to take payments from your customers.
|
|
128 |
|
129 |
**Vendor Payment Gateways**
|
130 |
|
|
|
|
|
131 |
* Stripe Connect Commissions & Gateway
|
132 |
* Payouts for WC Vendors
|
133 |
* MangoPay for WooCommerce
|
@@ -252,6 +254,13 @@ WC Vendors Marketplace does not work with multisite WordPress. There are no plan
|
|
252 |
|
253 |
== Changelog ==
|
254 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
255 |
= Version 2.1.15 - 13th September 2019 =
|
256 |
|
257 |
* Added: Vendor to WooCommerce Product Import/Export for marketplace admin
|
6 |
Plugin URI: https://www.wcvendors.com/
|
7 |
Requires at least: 5.0.0
|
8 |
Requires PHP: 5.6
|
9 |
+
Tested up to: 5.2.4
|
10 |
WC requires at least: 3.3.0
|
11 |
+
WC tested up to: 3.8.0
|
12 |
+
Stable tag: 2.1.16
|
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!
|
25 |
|
26 |
Create your own marketplace and allow vendors to sell products just like etsy, Envato, eBay, or Amazon! You can sell physical, digital or variable products on your marketplace.
|
27 |
|
28 |
+
WC Vendors Marketplace is the best way to create your multi-vendor marketplace and earn money from every sale.
|
29 |
|
30 |
= Solutions =
|
31 |
|
56 |
* Physical products
|
57 |
* Digital and Downloadable products
|
58 |
* Variable products
|
59 |
+
* Subscription products with our [WC Vendors Subscriptions plugin](https://www.wcvendors.com/product/wc-vendors-woocommerce-subscriptions/?&utm_campaign=description?utm_source=wporg)
|
60 |
+
* Booking products with our [WC Vendors WooCommerce Bookings plugin](https://www.wcvendors.com/product/wc-vendors-woocommerce-bookings/?&utm_campaign=description?utm_source=wporg)
|
61 |
* Auctions with our [WC Vendors WooCommerce Simple Auctions plugin](https://www.wcvendors.com/product/woocommerce-simple-auctions-integration/?&utm_campaign=description?utm_source=wporg)
|
62 |
|
63 |
This allows you to create all kinds of marketplaces such as
|
128 |
|
129 |
**Vendor Payment Gateways**
|
130 |
|
131 |
+
Pay your vendors their commissions with these gateways and payment solutions
|
132 |
+
|
133 |
* Stripe Connect Commissions & Gateway
|
134 |
* Payouts for WC Vendors
|
135 |
* MangoPay for WooCommerce
|
254 |
|
255 |
== Changelog ==
|
256 |
|
257 |
+
= Version 2.1.16 - 16th October 2019 =
|
258 |
+
|
259 |
+
* Updated: Extensions page product links
|
260 |
+
* Updated: Tested to
|
261 |
+
* Fixed: Low/out of stock emails not sending #593
|
262 |
+
* Fixed: jQuery reference
|
263 |
+
|
264 |
= Version 2.1.15 - 13th September 2019 =
|
265 |
|
266 |
* Added: Vendor to WooCommerce Product Import/Export for marketplace admin
|