Version Description
No Upgrade required at this time.
Download this release
Release Info
Developer | digitalchild |
Plugin | WC Vendors |
Version | 1.8.4 |
Comparing to | |
See all releases |
Code changes from version 1.8.3 to 1.8.4
- changelog.txt +16 -0
- class-wc-vendors.php +3 -3
- classes/admin/class-admin-users.php +5 -0
- classes/admin/class-vendor-applicants.php +3 -1
- classes/admin/emails/class-wc-notify-vendor.php +14 -6
- classes/admin/settings/classes/sf-class-format-options.php +1 -1
- classes/admin/settings/classes/sf-class-settings.php +2 -0
- classes/admin/settings/sf-options.php +18 -18
- classes/front/class-vendor-cart.php +1 -1
- classes/front/class-vendor-shop.php +5 -4
- classes/front/dashboard/class-vendor-dashboard.php +1 -1
- classes/front/orders/class-orders.php +1 -1
- classes/front/signup/class-vendor-signup.php +1 -1
- classes/gateways/PayPal_AdvPayments/PayPal_AP/classes/adaptivepayments-sdk/lib/auth/PPAuth.php +26 -24
- languages/default.pot +271 -194
- readme.txt +35 -17
changelog.txt
CHANGED
@@ -1,5 +1,21 @@
|
|
1 |
Changelog for WC Vendors
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
Version 1.8.3
|
4 |
|
5 |
* Fixed: Fatal Error on activation Merge pull request #235 from oleggen/patch-1
|
1 |
Changelog for WC Vendors
|
2 |
|
3 |
+
Version 1.8.4
|
4 |
+
|
5 |
+
* Added: Removed fields from users that aren't vendors
|
6 |
+
* Added: actions to hook into approve/deny vendor
|
7 |
+
* Added: Ability to integrate with any order status for emails #216
|
8 |
+
* Added: Terms & Conditions Opens in New Tab #246
|
9 |
+
* Updated: Added trigger for on-hold to processing/completed for Notify Vendor Email #238
|
10 |
+
* Updated: Settings page helper text and clarifications
|
11 |
+
* Fixed: Sold by formatting issue #248
|
12 |
+
* Fixed: wp_redirect caches with W3 Total Cache #237
|
13 |
+
* Fixed: Bug in single page settings generator
|
14 |
+
* Fixed: Category title missing bug #213
|
15 |
+
* Fixed: Undefined index for non vendor users
|
16 |
+
* Merge: pull request #247 from archonic/hotfix/oauth-class-exists
|
17 |
+
|
18 |
+
|
19 |
Version 1.8.3
|
20 |
|
21 |
* Fixed: Fatal Error on activation Merge pull request #235 from oleggen/patch-1
|
class-wc-vendors.php
CHANGED
@@ -7,16 +7,16 @@
|
|
7 |
* Author: WC Vendors
|
8 |
* Author URI: http://wcvendors.com
|
9 |
*
|
10 |
-
* Version: 1.8.
|
11 |
* Requires at least: 4.0.0
|
12 |
-
* Tested up to: 4.4.
|
13 |
*
|
14 |
* Text Domain: wcvendors
|
15 |
* Domain Path: /languages/
|
16 |
*
|
17 |
* @category Plugin
|
18 |
* @copyright Copyright © 2012 Matt Gates
|
19 |
-
* @copyright Copyright ©
|
20 |
* @author Matt Gates, WC Vendors
|
21 |
* @package WCVendors
|
22 |
*/
|
7 |
* Author: WC Vendors
|
8 |
* Author URI: http://wcvendors.com
|
9 |
*
|
10 |
+
* Version: 1.8.4
|
11 |
* Requires at least: 4.0.0
|
12 |
+
* Tested up to: 4.4.1
|
13 |
*
|
14 |
* Text Domain: wcvendors
|
15 |
* Domain Path: /languages/
|
16 |
*
|
17 |
* @category Plugin
|
18 |
* @copyright Copyright © 2012 Matt Gates
|
19 |
+
* @copyright Copyright © 2016 WC Vendors
|
20 |
* @author Matt Gates, WC Vendors
|
21 |
* @package WCVendors
|
22 |
*/
|
classes/admin/class-admin-users.php
CHANGED
@@ -363,6 +363,8 @@ class WCV_Admin_Users
|
|
363 |
{
|
364 |
if ( !current_user_can( 'edit_user', $vendor_id ) ) return false;
|
365 |
|
|
|
|
|
366 |
$users = get_users( array( 'meta_key' => 'pv_shop_slug', 'meta_value' => sanitize_title( $_POST[ 'pv_shop_name' ] ) ) );
|
367 |
if ( empty( $users ) || $users[ 0 ]->ID == $vendor_id ) {
|
368 |
update_user_meta( $vendor_id, 'pv_shop_name', $_POST[ 'pv_shop_name' ] );
|
@@ -388,6 +390,9 @@ class WCV_Admin_Users
|
|
388 |
*/
|
389 |
public function show_extra_profile_fields( $user )
|
390 |
{
|
|
|
|
|
|
|
391 |
?>
|
392 |
<h3><?php _e( 'WC Vendors', 'wcvendors' ); ?></h3>
|
393 |
<table class="form-table">
|
363 |
{
|
364 |
if ( !current_user_can( 'edit_user', $vendor_id ) ) return false;
|
365 |
|
366 |
+
if ( ! WCV_Vendors::is_vendor( $vendor_id ) ) { return; }
|
367 |
+
|
368 |
$users = get_users( array( 'meta_key' => 'pv_shop_slug', 'meta_value' => sanitize_title( $_POST[ 'pv_shop_name' ] ) ) );
|
369 |
if ( empty( $users ) || $users[ 0 ]->ID == $vendor_id ) {
|
370 |
update_user_meta( $vendor_id, 'pv_shop_name', $_POST[ 'pv_shop_name' ] );
|
390 |
*/
|
391 |
public function show_extra_profile_fields( $user )
|
392 |
{
|
393 |
+
|
394 |
+
if ( ! WCV_Vendors::is_vendor( $user->ID ) ) { return; }
|
395 |
+
|
396 |
?>
|
397 |
<h3><?php _e( 'WC Vendors', 'wcvendors' ); ?></h3>
|
398 |
<table class="form-table">
|
classes/admin/class-vendor-applicants.php
CHANGED
@@ -32,7 +32,7 @@ class WCV_Vendor_Applicants
|
|
32 |
|
33 |
|
34 |
/**
|
35 |
-
*
|
36 |
*/
|
37 |
public function user_row_actions_commit()
|
38 |
{
|
@@ -44,11 +44,13 @@ class WCV_Vendor_Applicants
|
|
44 |
case 'approve_vendor':
|
45 |
$role = 'vendor';
|
46 |
add_action( 'admin_notices', array( $this, 'approved' ) );
|
|
|
47 |
break;
|
48 |
|
49 |
case 'deny_vendor':
|
50 |
$role = 'subscriber';
|
51 |
add_action( 'admin_notices', array( $this, 'denied' ) );
|
|
|
52 |
break;
|
53 |
|
54 |
default:
|
32 |
|
33 |
|
34 |
/**
|
35 |
+
*
|
36 |
*/
|
37 |
public function user_row_actions_commit()
|
38 |
{
|
44 |
case 'approve_vendor':
|
45 |
$role = 'vendor';
|
46 |
add_action( 'admin_notices', array( $this, 'approved' ) );
|
47 |
+
do_action( 'wcvendors_approve_vendor', $wp_user_object );
|
48 |
break;
|
49 |
|
50 |
case 'deny_vendor':
|
51 |
$role = 'subscriber';
|
52 |
add_action( 'admin_notices', array( $this, 'denied' ) );
|
53 |
+
do_action( 'wcvendors_deny_vendor', $wp_user_object );
|
54 |
break;
|
55 |
|
56 |
default:
|
classes/admin/emails/class-wc-notify-vendor.php
CHANGED
@@ -33,13 +33,21 @@ class WC_Email_Notify_Vendor extends WC_Email
|
|
33 |
$this->template_html = 'vendor-new-order.php';
|
34 |
$this->template_plain = 'vendor-new-order.php';
|
35 |
$this->template_base = dirname( dirname( dirname( dirname( __FILE__ ) ) ) ) . '/templates/emails/';
|
36 |
-
|
|
|
|
|
37 |
// Triggers for this email
|
38 |
-
|
39 |
-
add_action( '
|
40 |
-
add_action( '
|
41 |
-
add_action( '
|
42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
$this->recipient = get_option( 'admin_email' );
|
44 |
|
45 |
// Call parent constuctor
|
33 |
$this->template_html = 'vendor-new-order.php';
|
34 |
$this->template_plain = 'vendor-new-order.php';
|
35 |
$this->template_base = dirname( dirname( dirname( dirname( __FILE__ ) ) ) ) . '/templates/emails/';
|
36 |
+
|
37 |
+
$completed_statuses = apply_filters( 'wcvendors_completed_statuses', array( 'completed', 'processing' ) ); // #216
|
38 |
+
|
39 |
// Triggers for this email
|
40 |
+
foreach ( $completed_statuses as $status ) {
|
41 |
+
add_action( 'woocommerce_order_status_pending_to_{$status}_notification', array( $this, 'trigger' ) );
|
42 |
+
add_action( 'woocommerce_order_status_failed_to_{$status}_notification', array( $this, 'trigger' ) );
|
43 |
+
add_action( 'woocommerce_order_status_on-hold_to_{$status}_notification', array( $this, 'trigger' ) );
|
44 |
+
}
|
45 |
+
//add_action( 'woocommerce_order_status_pending_to_processing_notification', array( $this, 'trigger' ) );
|
46 |
+
//add_action( 'woocommerce_order_status_pending_to_completed_notification', array( $this, 'trigger' ) );
|
47 |
+
//add_action( 'woocommerce_order_status_failed_to_processing_notification', array( $this, 'trigger' ) );
|
48 |
+
//add_action( 'woocommerce_order_status_failed_to_completed_notification', array( $this, 'trigger' ) );
|
49 |
+
//add_action( 'woocommerce_order_status_on-hold_to_processing_notification', array( $this, 'trigger' ) ); // Added in 1.8.4
|
50 |
+
//add_action( 'woocommerce_order_status_on-hold_to_completed_notification', array( $this, 'trigger' ) ); // Added in 1.8.4
|
51 |
$this->recipient = get_option( 'admin_email' );
|
52 |
|
53 |
// Call parent constuctor
|
classes/admin/settings/classes/sf-class-format-options.php
CHANGED
@@ -69,7 +69,7 @@ if ( !class_exists( 'SF_Format_Options' ) ) {
|
|
69 |
$header_types = apply_filters( $this->id . '_options_header_types', array( 'heading', 'title' ) );
|
70 |
|
71 |
extract( $setting );
|
72 |
-
|
73 |
$description = $desc && !$grouped && $type != 'checkbox'
|
74 |
? '<br /><small>' . $desc . '</small>'
|
75 |
: '<label for="' . $id . '"> ' . $desc . '</label>';
|
69 |
$header_types = apply_filters( $this->id . '_options_header_types', array( 'heading', 'title' ) );
|
70 |
|
71 |
extract( $setting );
|
72 |
+
|
73 |
$description = $desc && !$grouped && $type != 'checkbox'
|
74 |
? '<br /><small>' . $desc . '</small>'
|
75 |
: '<label for="' . $id . '"> ' . $desc . '</label>';
|
classes/admin/settings/classes/sf-class-settings.php
CHANGED
@@ -759,6 +759,8 @@ if ( !class_exists( 'SF_Settings_API' ) ) {
|
|
759 |
|
760 |
$selected = ( $value !== false ) ? $value : $std;
|
761 |
|
|
|
|
|
762 |
$args = array(
|
763 |
'name' => $name,
|
764 |
'id' => $id,
|
759 |
|
760 |
$selected = ( $value !== false ) ? $value : $std;
|
761 |
|
762 |
+
if ( $value == 0 ) $selected = $std;
|
763 |
+
|
764 |
$args = array(
|
765 |
'name' => $name,
|
766 |
'id' => $id,
|
classes/admin/settings/sf-options.php
CHANGED
@@ -6,7 +6,7 @@ $options[ ] = array( 'name' => __( 'General options', 'wcvendors' ), 'type' => '
|
|
6 |
|
7 |
$options[ ] = array(
|
8 |
'name' => __( 'Default commission (%)', 'wcvendors' ),
|
9 |
-
'desc' => __( 'The default rate you pay each vendor for a product sale.
|
10 |
'id' => 'default_commission',
|
11 |
'css' => 'width:70px;',
|
12 |
'type' => 'number',
|
@@ -51,7 +51,7 @@ $options[ ] = array(
|
|
51 |
$options[ ] = array(
|
52 |
'name' => __( 'Shipping', 'wcvendors' ),
|
53 |
'desc' => __( 'Give vendors any shipping collected per-product', 'wcvendors' ),
|
54 |
-
'tip' => __( '
|
55 |
'id' => 'give_shipping',
|
56 |
'type' => 'checkbox',
|
57 |
'std' => true,
|
@@ -61,15 +61,15 @@ $options[ ] = array( 'name' => __( 'Shop options', 'wcvendors' ), 'type' => 'tit
|
|
61 |
|
62 |
$options[ ] = array(
|
63 |
'name' => __( 'Shop HTML', 'wcvendors' ),
|
64 |
-
'desc' => __( 'Enable HTML for a vendor\'s shop description by default. You can enable or disable this per vendor by editing the vendors
|
65 |
'id' => 'shop_html_enabled',
|
66 |
'type' => 'checkbox',
|
67 |
'std' => true,
|
68 |
);
|
69 |
|
70 |
$options[ ] = array(
|
71 |
-
'name' => __( 'Vendor
|
72 |
-
'desc' => __( '
|
73 |
'id' => 'vendor_shop_permalink',
|
74 |
'type' => 'text',
|
75 |
'std' => 'vendors/',
|
@@ -108,7 +108,7 @@ $options[ ] = array(
|
|
108 |
);
|
109 |
|
110 |
$options[ ] = array(
|
111 |
-
'name' => __( '
|
112 |
'desc' => __( 'The seller info tab title on the single product page.', 'wcvendors' ),
|
113 |
'id' => 'seller_info_label',
|
114 |
'type' => 'text',
|
@@ -120,7 +120,7 @@ $options[ ] = array( 'name' => __( 'Product Add Page', 'wcvendors' ), 'type' =>
|
|
120 |
|
121 |
$options[ ] = array(
|
122 |
'name' => __( 'Left side panel', 'wcvendors' ),
|
123 |
-
'desc' => __( 'CHECKING these boxes will HIDE these areas of the add product page for vendors', 'wcvendors' ),
|
124 |
'id' => 'hide_product_panel',
|
125 |
'options' => array(
|
126 |
'inventory' => __( 'Inventory', 'wcvendors' ),
|
@@ -149,7 +149,7 @@ $options[ ] = array(
|
|
149 |
|
150 |
$options[ ] = array(
|
151 |
'name' => __( 'Type options', 'wcvendors' ),
|
152 |
-
'desc' => __( 'CHECKING these boxes will HIDE these product options from the vendor', 'wcvendors' ),
|
153 |
'id' => 'hide_product_type_options',
|
154 |
'options' => array(
|
155 |
'virtual' => __( 'Virtual', 'wcvendors' ),
|
@@ -227,7 +227,7 @@ $options[ ] = array(
|
|
227 |
$options[ ] = array(
|
228 |
'name' => __( 'Reports', 'wcvendors' ),
|
229 |
'desc' => __( '<strike>View backend sales reports</strike>. <strong>Depreciated</strong>', 'wcvendors' ),
|
230 |
-
'tip' => __( 'This option has been removed and will no longer function. It will be completely removed in future versions.
|
231 |
'id' => 'can_view_backend_reports',
|
232 |
'type' => 'checkbox',
|
233 |
'std' => false,
|
@@ -235,7 +235,7 @@ $options[ ] = array(
|
|
235 |
|
236 |
$options[ ] = array(
|
237 |
'desc' => __( 'View Frontend sales reports', 'wcvendors' ),
|
238 |
-
'tip' => __( 'Sales table on the frontend on the
|
239 |
'id' => 'can_view_frontend_reports',
|
240 |
'type' => 'checkbox',
|
241 |
'std' => true,
|
@@ -244,7 +244,7 @@ $options[ ] = array(
|
|
244 |
$options[ ] = array(
|
245 |
'name' => __( 'Products', 'wcvendors' ),
|
246 |
'desc' => __( 'Submit products', 'wcvendors' ),
|
247 |
-
'tip' => __( '
|
248 |
'id' => 'can_submit_products',
|
249 |
'type' => 'checkbox',
|
250 |
'std' => true,
|
@@ -271,7 +271,7 @@ $options[ ] = array( 'name' => __( 'Page configuration', 'wcvendors' ), 'type' =
|
|
271 |
|
272 |
$options[ ] = array(
|
273 |
'name' => __( 'Vendor dashboard', 'wcvendors' ),
|
274 |
-
'desc' => __( 'Choose the page that has the shortcode <code>[wcv_vendor_dashboard]</code><br
|
275 |
'id' => 'vendor_dashboard_page',
|
276 |
'type' => 'single_select_page',
|
277 |
'select2' => true,
|
@@ -279,7 +279,7 @@ $options[ ] = array(
|
|
279 |
|
280 |
$options[ ] = array(
|
281 |
'name' => __( 'Shop settings', 'wcvendors' ),
|
282 |
-
'desc' => __( 'Choose the page that has the shortcode <code>[wcv_shop_settings]</code><br/>These are the shop settings a vendor can configure.', 'wcvendors' ),
|
283 |
'id' => 'shop_settings_page',
|
284 |
'type' => 'single_select_page',
|
285 |
'select2' => true,
|
@@ -287,7 +287,7 @@ $options[ ] = array(
|
|
287 |
|
288 |
$options[ ] = array(
|
289 |
'name' => __( 'Orders page', 'wcvendors' ),
|
290 |
-
'desc' => __( 'Choose the page that has the shortcode <code>[wcv_orders]</code><br/>By default,
|
291 |
'id' => 'orders_page',
|
292 |
'type' => 'single_select_page',
|
293 |
'select2' => true,
|
@@ -295,7 +295,7 @@ $options[ ] = array(
|
|
295 |
|
296 |
$options[ ] = array(
|
297 |
'name' => __( 'Vendor terms', 'wcvendors' ),
|
298 |
-
'desc' => __( 'These terms are shown to a user when submitting an application to become a vendor.<br/>If left blank, no terms will be shown to the applicant.', 'wcvendors' ),
|
299 |
'id' => 'terms_to_apply_page',
|
300 |
'type' => 'single_select_page',
|
301 |
'select2' => true,
|
@@ -315,14 +315,14 @@ if ( !empty( $_GET[ 'tab' ] ) && $_GET[ 'tab' ] == __( 'payments', 'wcvendors' )
|
|
315 |
}
|
316 |
$options[ ] = array( 'name' => __( 'Payments', 'wcvendors' ), 'type' => 'heading' );
|
317 |
$options[ ] = array(
|
318 |
-
'name' => __( '
|
319 |
sprintf( __( 'Total commission currently due: %s. <a href="%s">View details</a>.', 'wcvendors' ), !function_exists( 'woocommerce_price' ) ? $total_due : woocommerce_price( $total_due ), '?page=pv_admin_commissions' ) .
|
320 |
-
'<br/><br/>' . sprintf( __( 'Make sure you update your PayPal Adaptive Payments settings <a href="%s">here</a>.', 'wcvendors' ), 'admin.php?page=wc-settings&tab=checkout§ion=wc_paypalap' )
|
321 |
);
|
322 |
|
323 |
$options[ ] = array(
|
324 |
'name' => __( 'Instant pay', 'wcvendors' ),
|
325 |
-
'desc' => __( 'Instantly pay vendors their commission when an order is made', 'wcvendors' ),
|
326 |
'tip' => __( 'For this to work, customers must checkout with the PayPal Adaptive Payments gateway. Using any other gateways will not pay vendors instantly', 'wcvendors' ),
|
327 |
'id' => 'instapay',
|
328 |
'type' => 'checkbox',
|
6 |
|
7 |
$options[ ] = array(
|
8 |
'name' => __( 'Default commission (%)', 'wcvendors' ),
|
9 |
+
'desc' => __( 'The default rate you pay each vendor for a product sale. <br>You can also give vendors their own individual commission rates by editing the vendors user account.<br>Also, you can edit an individual products commission to override both of these settings on a per product basis.', 'wcvendors' ),
|
10 |
'id' => 'default_commission',
|
11 |
'css' => 'width:70px;',
|
12 |
'type' => 'number',
|
51 |
$options[ ] = array(
|
52 |
'name' => __( 'Shipping', 'wcvendors' ),
|
53 |
'desc' => __( 'Give vendors any shipping collected per-product', 'wcvendors' ),
|
54 |
+
'tip' => __( 'WC Vendors Free - Give vendors shipping if using Per Product Shipping gateway. WC Vendors Pro - Give vendors shipping when using Vendor Shipping. No other shipping module is compatible with this option.', 'wcvendors' ),
|
55 |
'id' => 'give_shipping',
|
56 |
'type' => 'checkbox',
|
57 |
'std' => true,
|
61 |
|
62 |
$options[ ] = array(
|
63 |
'name' => __( 'Shop HTML', 'wcvendors' ),
|
64 |
+
'desc' => __( 'Enable HTML for a vendor\'s shop description by default. You can enable or disable this per vendor by editing the vendors user account.', 'wcvendors' ),
|
65 |
'id' => 'shop_html_enabled',
|
66 |
'type' => 'checkbox',
|
67 |
'std' => true,
|
68 |
);
|
69 |
|
70 |
$options[ ] = array(
|
71 |
+
'name' => __( 'Vendor Shop Page', 'wcvendors' ),
|
72 |
+
'desc' => __( 'Enter one word for the URI. If you enter "<strong>vendors</strong>" your vendors store will be <code>yourdomain.com/vendors/store-name/</code>', 'wcvendors' ),
|
73 |
'id' => 'vendor_shop_permalink',
|
74 |
'type' => 'text',
|
75 |
'std' => 'vendors/',
|
108 |
);
|
109 |
|
110 |
$options[ ] = array(
|
111 |
+
'name' => __( 'Seller Info Label', 'wcvendors' ),
|
112 |
'desc' => __( 'The seller info tab title on the single product page.', 'wcvendors' ),
|
113 |
'id' => 'seller_info_label',
|
114 |
'type' => 'text',
|
120 |
|
121 |
$options[ ] = array(
|
122 |
'name' => __( 'Left side panel', 'wcvendors' ),
|
123 |
+
'desc' => __( 'CHECKING these boxes will **HIDE** these areas of the add product page for vendors', 'wcvendors' ),
|
124 |
'id' => 'hide_product_panel',
|
125 |
'options' => array(
|
126 |
'inventory' => __( 'Inventory', 'wcvendors' ),
|
149 |
|
150 |
$options[ ] = array(
|
151 |
'name' => __( 'Type options', 'wcvendors' ),
|
152 |
+
'desc' => __( 'CHECKING these boxes will **HIDE** these product options from the vendor', 'wcvendors' ),
|
153 |
'id' => 'hide_product_type_options',
|
154 |
'options' => array(
|
155 |
'virtual' => __( 'Virtual', 'wcvendors' ),
|
227 |
$options[ ] = array(
|
228 |
'name' => __( 'Reports', 'wcvendors' ),
|
229 |
'desc' => __( '<strike>View backend sales reports</strike>. <strong>Depreciated</strong>', 'wcvendors' ),
|
230 |
+
'tip' => __( 'This option has been removed and will no longer function. It will be completely removed in future versions. Vendors should use their Vendor Dashboard for reports as all identical functionality is already there. ', 'wcvendors' ),
|
231 |
'id' => 'can_view_backend_reports',
|
232 |
'type' => 'checkbox',
|
233 |
'std' => false,
|
235 |
|
236 |
$options[ ] = array(
|
237 |
'desc' => __( 'View Frontend sales reports', 'wcvendors' ),
|
238 |
+
'tip' => __( 'Sales table on the frontend on the Vendor Dashboard page. The table will only display sales data that pertain to their products, and only for orders that are processing or completed.', 'wcvendors' ),
|
239 |
'id' => 'can_view_frontend_reports',
|
240 |
'type' => 'checkbox',
|
241 |
'std' => true,
|
244 |
$options[ ] = array(
|
245 |
'name' => __( 'Products', 'wcvendors' ),
|
246 |
'desc' => __( 'Submit products', 'wcvendors' ),
|
247 |
+
'tip' => __( 'Check to allow vendors to list new products. Admin must approve new products by editing the product, and clicking Publish.', 'wcvendors' ),
|
248 |
'id' => 'can_submit_products',
|
249 |
'type' => 'checkbox',
|
250 |
'std' => true,
|
271 |
|
272 |
$options[ ] = array(
|
273 |
'name' => __( 'Vendor dashboard', 'wcvendors' ),
|
274 |
+
'desc' => __( 'Choose the page that has the shortcode <code>[wcv_vendor_dashboard]</code><br/>. If this page is not set, you will break your site. If you upgrade to Pro, keep this page unchanged as both Pro Dashboard and this Dashboard page must be set.', 'wcvendors' ),
|
275 |
'id' => 'vendor_dashboard_page',
|
276 |
'type' => 'single_select_page',
|
277 |
'select2' => true,
|
279 |
|
280 |
$options[ ] = array(
|
281 |
'name' => __( 'Shop settings', 'wcvendors' ),
|
282 |
+
'desc' => __( 'Choose the page that has the shortcode <code>[wcv_shop_settings]</code><br/>These are the shop settings a vendor can configure. By default, Vendor Dashboard > Shop Settings should have this shortcode.', 'wcvendors' ),
|
283 |
'id' => 'shop_settings_page',
|
284 |
'type' => 'single_select_page',
|
285 |
'select2' => true,
|
287 |
|
288 |
$options[ ] = array(
|
289 |
'name' => __( 'Orders page', 'wcvendors' ),
|
290 |
+
'desc' => __( 'Choose the page that has the shortcode <code>[wcv_orders]</code><br/>By default, Vendor Dashboard > Orders should have the shortcode.', 'wcvendors' ),
|
291 |
'id' => 'orders_page',
|
292 |
'type' => 'single_select_page',
|
293 |
'select2' => true,
|
295 |
|
296 |
$options[ ] = array(
|
297 |
'name' => __( 'Vendor terms', 'wcvendors' ),
|
298 |
+
'desc' => __( 'These terms are shown to a user when submitting an application to become a vendor.<br/>If left blank, no terms will be shown to the applicant. Vendor must accept terms in order to register, if set.', 'wcvendors' ),
|
299 |
'id' => 'terms_to_apply_page',
|
300 |
'type' => 'single_select_page',
|
301 |
'select2' => true,
|
315 |
}
|
316 |
$options[ ] = array( 'name' => __( 'Payments', 'wcvendors' ), 'type' => 'heading' );
|
317 |
$options[ ] = array(
|
318 |
+
'name' => __( 'PayPal Adaptive Payments Scheduling', 'wcvendors' ), 'type' => 'title', 'desc' =>
|
319 |
sprintf( __( 'Total commission currently due: %s. <a href="%s">View details</a>.', 'wcvendors' ), !function_exists( 'woocommerce_price' ) ? $total_due : woocommerce_price( $total_due ), '?page=pv_admin_commissions' ) .
|
320 |
+
'<br/><br/>' . sprintf( __( 'Make sure you update your PayPal Adaptive Payments settings <a href="%s">here</a>. <br><br>To instantly pay with Adaptive Payments you must activate the paypalap gateway in your Checkout settings. <br><a href="https://www.wcvendors.com/kb/configuring-paypal-adaptive-payments/" target="top">PayPal AP Application Help</a>. <br><br>Another gateway that offers instant payments to vendors that also accepts credit cards directly on your checkout page is Stripe. <br><a href="https://www.wcvendors.com/product/stripe-commissions-gateway/" target="top">Stripe Commissions & Gateway plugin</a> is $49 and specifically coded for WC Vendors and <a href="https://www.wcvendors.com/product/wc-vendors-pro/" target="top">WC Vendors Pro</a>.', 'wcvendors' ), 'admin.php?page=wc-settings&tab=checkout§ion=wc_paypalap' )
|
321 |
);
|
322 |
|
323 |
$options[ ] = array(
|
324 |
'name' => __( 'Instant pay', 'wcvendors' ),
|
325 |
+
'desc' => __( 'Instantly pay vendors their commission when an order is made, and if a vendor has a valid PayPal email added on their Shop Settings page.', 'wcvendors' ),
|
326 |
'tip' => __( 'For this to work, customers must checkout with the PayPal Adaptive Payments gateway. Using any other gateways will not pay vendors instantly', 'wcvendors' ),
|
327 |
'id' => 'instapay',
|
328 |
'type' => 'checkbox',
|
classes/front/class-vendor-cart.php
CHANGED
@@ -35,7 +35,7 @@ class WCV_Vendor_Cart
|
|
35 |
$vendor_id = $cart_item[ 'data' ]->post->post_author;
|
36 |
$sold_by_label = WC_Vendors::$pv_options->get_option( 'sold_by_label' );
|
37 |
$sold_by = WCV_Vendors::is_vendor( $vendor_id )
|
38 |
-
? sprintf( '<a href="%s" target="_TOP">%s</a>', WCV_Vendors::get_vendor_shop_page( $vendor_id ), WCV_Vendors::get_vendor_sold_by( $vendor_id ) )
|
39 |
: get_bloginfo( 'name' );
|
40 |
|
41 |
$values[ ] = array(
|
35 |
$vendor_id = $cart_item[ 'data' ]->post->post_author;
|
36 |
$sold_by_label = WC_Vendors::$pv_options->get_option( 'sold_by_label' );
|
37 |
$sold_by = WCV_Vendors::is_vendor( $vendor_id )
|
38 |
+
? sprintf( '<a href="%s" target="_TOP">%s </a>', WCV_Vendors::get_vendor_shop_page( $vendor_id ), WCV_Vendors::get_vendor_sold_by( $vendor_id ) )
|
39 |
: get_bloginfo( 'name' );
|
40 |
|
41 |
$values[ ] = array(
|
classes/front/class-vendor-shop.php
CHANGED
@@ -180,18 +180,19 @@ class WCV_Vendor_Shop
|
|
180 |
$sold_by = WCV_Vendors::is_vendor( $vendor_id )
|
181 |
? sprintf( '<a href="%s">%s</a>', WCV_Vendors::get_vendor_shop_page( $vendor_id ), WCV_Vendors::get_vendor_sold_by( $vendor_id ) )
|
182 |
: get_bloginfo( 'name' );
|
183 |
-
echo '<small class="wcvendors_sold_by_in_loop">' . apply_filters('wcvendors_sold_by_in_loop', $sold_by_label ). $sold_by . '</small> <br />';
|
184 |
}
|
185 |
|
186 |
|
187 |
/*
|
188 |
* Remove the Page title from Archive-Product while on a vendor Page
|
189 |
*/
|
190 |
-
public static function remove_vendor_title() {
|
191 |
if ( WCV_Vendors::is_vendor_page() ) {
|
192 |
return false;
|
193 |
}
|
194 |
-
|
|
|
195 |
|
196 |
/*
|
197 |
* Display a vendor header at the top of the vendors product archive page
|
@@ -283,7 +284,7 @@ class WCV_Vendor_Shop
|
|
283 |
public static function add_vendor_to_order_item_meta( $item_id, $cart_item) {
|
284 |
$vendor_id = $cart_item[ 'data' ]->post->post_author;
|
285 |
$sold_by = WCV_Vendors::is_vendor( $vendor_id ) ? sprintf( WCV_Vendors::get_vendor_sold_by( $vendor_id ) ): get_bloginfo( 'name' );
|
286 |
-
wc_add_order_item_meta( $item_id, apply_filters('wcvendors_sold_by_in_email', __('Sold by', 'wcvendors')), $sold_by);
|
287 |
}
|
288 |
|
289 |
}
|
180 |
$sold_by = WCV_Vendors::is_vendor( $vendor_id )
|
181 |
? sprintf( '<a href="%s">%s</a>', WCV_Vendors::get_vendor_shop_page( $vendor_id ), WCV_Vendors::get_vendor_sold_by( $vendor_id ) )
|
182 |
: get_bloginfo( 'name' );
|
183 |
+
echo '<small class="wcvendors_sold_by_in_loop">' . apply_filters('wcvendors_sold_by_in_loop', $sold_by_label ). $sold_by . ' </small> <br />';
|
184 |
}
|
185 |
|
186 |
|
187 |
/*
|
188 |
* Remove the Page title from Archive-Product while on a vendor Page
|
189 |
*/
|
190 |
+
public static function remove_vendor_title( $b ) {
|
191 |
if ( WCV_Vendors::is_vendor_page() ) {
|
192 |
return false;
|
193 |
}
|
194 |
+
return $b;
|
195 |
+
}
|
196 |
|
197 |
/*
|
198 |
* Display a vendor header at the top of the vendors product archive page
|
284 |
public static function add_vendor_to_order_item_meta( $item_id, $cart_item) {
|
285 |
$vendor_id = $cart_item[ 'data' ]->post->post_author;
|
286 |
$sold_by = WCV_Vendors::is_vendor( $vendor_id ) ? sprintf( WCV_Vendors::get_vendor_sold_by( $vendor_id ) ): get_bloginfo( 'name' );
|
287 |
+
wc_add_order_item_meta( $item_id, apply_filters( 'wcvendors_sold_by_in_email', __('Sold by : ', 'wcvendors') ), $sold_by);
|
288 |
}
|
289 |
|
290 |
}
|
classes/front/dashboard/class-vendor-dashboard.php
CHANGED
@@ -146,7 +146,7 @@ class WCV_Vendor_Dashboard
|
|
146 |
|
147 |
if ( is_page( $vendor_dashboard_page ) || is_page( $shop_settings_page ) ) {
|
148 |
if ( !is_user_logged_in() ) {
|
149 |
-
wp_redirect( get_permalink( woocommerce_get_page_id( 'myaccount' ) ) );
|
150 |
exit;
|
151 |
}
|
152 |
// user is logged, start session only if it's vendor dashboard
|
146 |
|
147 |
if ( is_page( $vendor_dashboard_page ) || is_page( $shop_settings_page ) ) {
|
148 |
if ( !is_user_logged_in() ) {
|
149 |
+
wp_redirect( get_permalink( woocommerce_get_page_id( 'myaccount' ) ), 303 );
|
150 |
exit;
|
151 |
}
|
152 |
// user is logged, start session only if it's vendor dashboard
|
classes/front/orders/class-orders.php
CHANGED
@@ -32,7 +32,7 @@ class WCV_Orders
|
|
32 |
public function check_access()
|
33 |
{
|
34 |
if ( is_page( WC_Vendors::$pv_options->get_option( 'orders_page' ) ) && !is_user_logged_in() ) {
|
35 |
-
wp_redirect( get_permalink( woocommerce_get_page_id( 'myaccount' ) ) );
|
36 |
exit;
|
37 |
}
|
38 |
}
|
32 |
public function check_access()
|
33 |
{
|
34 |
if ( is_page( WC_Vendors::$pv_options->get_option( 'orders_page' ) ) && !is_user_logged_in() ) {
|
35 |
+
wp_redirect( get_permalink( woocommerce_get_page_id( 'myaccount' ) ), 303 );
|
36 |
exit;
|
37 |
}
|
38 |
}
|
classes/front/signup/class-vendor-signup.php
CHANGED
@@ -51,7 +51,7 @@ class WCV_Vendor_Signup
|
|
51 |
id="agree_to_terms" <?php checked( isset( $_POST[ 'agree_to_terms' ] ), true ) ?> type="checkbox"
|
52 |
name="agree_to_terms" value="1"/>
|
53 |
<label for="agree_to_terms"
|
54 |
-
class="checkbox"><?php printf( __( 'I have read and accepted the <a href="%s">terms and conditions</a>', 'wcvendors' ), get_permalink( $this->terms_page ) ); ?></label>
|
55 |
</p>
|
56 |
|
57 |
<script type="text/javascript">
|
51 |
id="agree_to_terms" <?php checked( isset( $_POST[ 'agree_to_terms' ] ), true ) ?> type="checkbox"
|
52 |
name="agree_to_terms" value="1"/>
|
53 |
<label for="agree_to_terms"
|
54 |
+
class="checkbox"><?php printf( __( 'I have read and accepted the <a target="top" href="%s">terms and conditions</a>', 'wcvendors' ), get_permalink( $this->terms_page ) ); ?></label>
|
55 |
</p>
|
56 |
|
57 |
<script type="text/javascript">
|
classes/gateways/PayPal_AdvPayments/PayPal_AP/classes/adaptivepayments-sdk/lib/auth/PPAuth.php
CHANGED
@@ -854,36 +854,38 @@ if ( !class_exists( 'OAuthServer' ) ) {
|
|
854 |
}
|
855 |
}
|
856 |
|
857 |
-
|
858 |
-
|
859 |
-
function lookup_consumer( $consumer_key )
|
860 |
{
|
861 |
-
|
862 |
-
|
|
|
|
|
863 |
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
|
|
|
887 |
}
|
888 |
|
889 |
if ( !class_exists( 'OAuthUtil' ) ) {
|
854 |
}
|
855 |
}
|
856 |
|
857 |
+
if ( !class_exists( 'OAuthDataStore' ) ) {
|
858 |
+
class OAuthDataStore
|
|
|
859 |
{
|
860 |
+
function lookup_consumer( $consumer_key )
|
861 |
+
{
|
862 |
+
// implement me
|
863 |
+
}
|
864 |
|
865 |
+
function lookup_token( $consumer, $token_type, $token )
|
866 |
+
{
|
867 |
+
// implement me
|
868 |
+
}
|
869 |
|
870 |
+
function lookup_nonce( $consumer, $token, $nonce, $timestamp )
|
871 |
+
{
|
872 |
+
// implement me
|
873 |
+
}
|
874 |
|
875 |
+
function new_request_token( $consumer, $callback = null )
|
876 |
+
{
|
877 |
+
// return a new token attached to this consumer
|
878 |
+
}
|
879 |
|
880 |
+
function new_access_token( $token, $consumer, $verifier = null )
|
881 |
+
{
|
882 |
+
// return a new access token attached to this consumer
|
883 |
+
// for the user associated with this token if the request token
|
884 |
+
// is authorized
|
885 |
+
// should also invalidate the request token
|
886 |
+
}
|
887 |
|
888 |
+
}
|
889 |
}
|
890 |
|
891 |
if ( !class_exists( 'OAuthUtil' ) ) {
|
languages/default.pot
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: WC Vendors\n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: 2015-04-24 09:29+1000\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: WC Vendors <support@wcvendors.com>\n"
|
@@ -25,52 +25,53 @@ msgid ""
|
|
25 |
msgstr ""
|
26 |
|
27 |
#: ../class-wc-vendors.php:81 ../classes/admin/class-admin-reports.php:41
|
28 |
-
#: ../classes/admin/class-admin-users.php:
|
29 |
msgid "WC Vendors"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: ../class-wc-vendors.php:
|
33 |
msgid ""
|
34 |
"<b>WC Vendors is disabled</b>. WC Vendors requires a minimum of WooCommerce "
|
35 |
"v2.4.0."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: ../class-wc-vendors.php:
|
39 |
msgid "Capabilities"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: ../class-wc-vendors.php:
|
43 |
-
#: ../classes/admin/class-admin-reports.php:
|
|
|
44 |
#: ../classes/admin/class-product-meta.php:46
|
45 |
#: ../classes/admin/class-product-meta.php:187
|
46 |
#: ../classes/admin/class-product-meta.php:223 ../classes/class-install.php:66
|
47 |
msgid "Vendor"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: ../class-wc-vendors.php:
|
51 |
msgid "General"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: ../class-wc-vendors.php:
|
55 |
msgid "Documentation/KB"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: ../class-wc-vendors.php:
|
59 |
msgid "Help Forums"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: ../class-wc-vendors.php:
|
63 |
msgid "Paid Support"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: ../class-wc-vendors.php:
|
67 |
#, php-format
|
68 |
msgid ""
|
69 |
"WC Vendors requires the Vendor shop page value be set <a href=\"%s\">click "
|
70 |
"here to set it.</a> | <a href=\"%s\">Hide Notice</a>"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: ../class-wc-vendors.php:
|
74 |
#, php-format
|
75 |
msgid ""
|
76 |
"You must save your permalinks once you have modified your vendor page. <a "
|
@@ -94,7 +95,7 @@ msgid "Commission"
|
|
94 |
msgstr ""
|
95 |
|
96 |
#: ../classes/admin/class-admin-page.php:251
|
97 |
-
#: ../classes/admin/class-admin-reports.php:
|
98 |
#: ../templates/dashboard/reports.php:17
|
99 |
#: ../templates/emails/notify-vendor-shipped.php:22
|
100 |
#: ../templates/emails/vendor-new-order.php:22
|
@@ -107,15 +108,16 @@ msgid "Order ID"
|
|
107 |
msgstr ""
|
108 |
|
109 |
#: ../classes/admin/class-admin-page.php:254
|
110 |
-
#: ../classes/admin/class-admin-reports.php:
|
111 |
-
#: ../classes/admin/class-admin-reports.php:
|
112 |
#: ../classes/admin/class-vendor-admin-dashboard.php:286
|
113 |
#: ../templates/dashboard/orders.php:35
|
114 |
msgid "Total"
|
115 |
msgstr ""
|
116 |
|
117 |
#: ../classes/admin/class-admin-page.php:255
|
118 |
-
#: ../classes/admin/class-admin-reports.php:
|
|
|
119 |
msgid "Status"
|
120 |
msgstr ""
|
121 |
|
@@ -180,162 +182,191 @@ msgstr ""
|
|
180 |
msgid "Commission by product"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: ../classes/admin/class-admin-reports.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
184 |
#: ../templates/dashboard/date-picker.php:3
|
185 |
msgid "From:"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: ../classes/admin/class-admin-reports.php:
|
|
|
189 |
#: ../templates/dashboard/date-picker.php:7
|
190 |
msgid "To:"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: ../classes/admin/class-admin-reports.php:
|
194 |
-
#: ../classes/admin/class-admin-reports.php:
|
|
|
195 |
#: ../templates/dashboard/date-picker.php:12
|
196 |
msgid "Show"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: ../classes/admin/class-admin-reports.php:
|
200 |
msgid "Total paid in range"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: ../classes/admin/class-admin-reports.php:
|
204 |
-
#: ../classes/admin/class-admin-reports.php:
|
205 |
-
#: ../classes/admin/class-admin-reports.php:
|
206 |
msgid "n/a"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: ../classes/admin/class-admin-reports.php:
|
210 |
msgid "Total due in range"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: ../classes/admin/class-admin-reports.php:
|
214 |
msgid "Total reversed in range"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: ../classes/admin/class-admin-reports.php:
|
218 |
msgid "Recent Commission"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: ../classes/admin/class-admin-reports.php:
|
222 |
#: ../classes/front/orders/class-orders.php:173
|
223 |
#: ../templates/dashboard/orders.php:33
|
224 |
msgid "Order"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: ../classes/admin/class-admin-reports.php:
|
228 |
msgid "Date & Time"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: ../classes/admin/class-admin-reports.php:
|
232 |
msgid "N/A"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: ../classes/admin/class-admin-reports.php:
|
236 |
msgid "D j M Y \\a\\t h:ia"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: ../classes/admin/class-admin-reports.php:
|
240 |
msgid "No commission yet"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: ../classes/admin/class-admin-reports.php:
|
244 |
msgid "Show:"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: ../classes/admin/class-admin-reports.php:
|
248 |
msgid "Search for a product…"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: ../classes/admin/class-admin-reports.php:
|
252 |
msgid "Type in a product name to start searching..."
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: ../classes/admin/class-admin-reports.php:
|
256 |
msgid "Select a vendor…"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: ../classes/admin/class-admin-reports.php:
|
260 |
msgid "Month"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: ../classes/admin/class-admin-reports.php:
|
264 |
-
msgid "Commission Totals"
|
265 |
-
msgstr ""
|
266 |
-
|
267 |
-
#: ../classes/admin/class-admin-reports.php:340
|
268 |
msgid "Tax"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ../classes/admin/class-admin-reports.php:
|
272 |
#: ../classes/admin/settings/sf-options.php:52
|
273 |
-
#: ../classes/admin/settings/sf-options.php:
|
274 |
#: ../templates/dashboard/orders.php:34 ../templates/orders/orders.php:115
|
275 |
msgid "Shipping"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: ../classes/admin/class-admin-reports.php:
|
|
|
279 |
msgid "Reversed"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: ../classes/admin/class-admin-reports.php:
|
|
|
283 |
msgid "Paid"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: ../classes/admin/class-admin-reports.php:
|
|
|
287 |
msgid "Due"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: ../classes/admin/class-admin-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
291 |
msgid "Enable HTML for the shop description"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: ../classes/admin/class-admin-users.php:
|
295 |
msgid "Shop name"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: ../classes/admin/class-admin-users.php:
|
299 |
msgid "PayPal E-mail"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: ../classes/admin/class-admin-users.php:
|
303 |
msgid "required"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: ../classes/admin/class-admin-users.php:
|
307 |
msgid "Commission rate"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: ../classes/admin/class-admin-users.php:
|
311 |
#: ../classes/admin/class-product-meta.php:174
|
312 |
msgid "Leave blank for default"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: ../classes/admin/class-admin-users.php:
|
316 |
msgid "Give Tax"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: ../classes/admin/class-admin-users.php:
|
320 |
msgid "Tax override for vendor"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ../classes/admin/class-admin-users.php:
|
324 |
msgid "Give Shipping"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: ../classes/admin/class-admin-users.php:
|
328 |
msgid "Shipping override for vendor"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: ../classes/admin/class-admin-users.php:
|
332 |
#: ../classes/admin/views/html-vendor-settings-page.php:30
|
333 |
-
#: ../classes/front/class-vendor-shop.php:105
|
334 |
#: ../templates/dashboard/settings/seller-info.php:3
|
335 |
msgid "Seller info"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: ../classes/admin/class-admin-users.php:
|
339 |
msgid "Shop description"
|
340 |
msgstr ""
|
341 |
|
@@ -346,7 +377,7 @@ msgstr ""
|
|
346 |
|
347 |
#: ../classes/admin/class-vendor-admin-dashboard.php:21
|
348 |
#: ../classes/admin/class-vendor-admin-dashboard.php:146
|
349 |
-
#: ../classes/admin/settings/sf-options.php:
|
350 |
#: ../classes/class-install.php:166 ../templates/dashboard/orders.php:24
|
351 |
msgid "Orders"
|
352 |
msgstr ""
|
@@ -372,12 +403,13 @@ msgid "Customer"
|
|
372 |
msgstr ""
|
373 |
|
374 |
#: ../classes/admin/class-vendor-admin-dashboard.php:285
|
375 |
-
#: ../classes/admin/settings/sf-options.php:
|
376 |
-
#: ../classes/admin/settings/sf-options.php:
|
377 |
msgid "Products"
|
378 |
msgstr ""
|
379 |
|
380 |
#: ../classes/admin/class-vendor-admin-dashboard.php:289
|
|
|
381 |
msgid "Shipped"
|
382 |
msgstr ""
|
383 |
|
@@ -390,27 +422,27 @@ msgstr ""
|
|
390 |
msgid "Orders marked shipped."
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: ../classes/admin/class-vendor-admin-dashboard.php:
|
394 |
#: ../templates/orders/orders.php:84
|
395 |
#, php-format
|
396 |
msgid "Comments (%s)"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: ../classes/admin/class-vendor-admin-dashboard.php:
|
400 |
msgid "Comments to Customer"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: ../classes/admin/class-vendor-admin-dashboard.php:
|
404 |
#: ../templates/orders/comments/existing-comments.php:9
|
405 |
#, php-format
|
406 |
msgid "added %s ago"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: ../classes/admin/class-vendor-admin-dashboard.php:
|
410 |
msgid "No comments currently to customer."
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: ../classes/admin/class-vendor-admin-dashboard.php:
|
414 |
#: ../templates/orders/comments/add-new-comment.php:11
|
415 |
msgid "Add comment"
|
416 |
msgstr ""
|
@@ -423,15 +455,15 @@ msgstr ""
|
|
423 |
msgid "Deny"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: ../classes/admin/class-vendor-applicants.php:
|
427 |
msgid "Vendor has been <b>denied</b>."
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: ../classes/admin/class-vendor-applicants.php:
|
431 |
msgid "Vendor has been <b>approved</b>."
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: ../classes/admin/class-vendor-applicants.php:
|
435 |
msgid "Pending Vendors"
|
436 |
msgstr ""
|
437 |
|
@@ -448,12 +480,6 @@ msgstr ""
|
|
448 |
msgid "denied"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: ../classes/admin/emails/class-emails.php:90
|
452 |
-
#: ../classes/front/class-vendor-cart.php:59
|
453 |
-
#: ../classes/front/class-vendor-shop.php:180
|
454 |
-
msgid "Sold by: "
|
455 |
-
msgstr ""
|
456 |
-
|
457 |
#: ../classes/admin/emails/class-wc-approve-vendor.php:28
|
458 |
msgid "Vendor Application"
|
459 |
msgstr ""
|
@@ -473,7 +499,7 @@ msgstr ""
|
|
473 |
#: ../classes/admin/emails/class-wc-approve-vendor.php:123
|
474 |
#: ../classes/admin/emails/class-wc-notify-admin.php:134
|
475 |
#: ../classes/admin/emails/class-wc-notify-shipped.php:163
|
476 |
-
#: ../classes/admin/emails/class-wc-notify-vendor.php:
|
477 |
#: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:62
|
478 |
msgid "Enable/Disable"
|
479 |
msgstr ""
|
@@ -481,7 +507,7 @@ msgstr ""
|
|
481 |
#: ../classes/admin/emails/class-wc-approve-vendor.php:125
|
482 |
#: ../classes/admin/emails/class-wc-notify-admin.php:136
|
483 |
#: ../classes/admin/emails/class-wc-notify-shipped.php:165
|
484 |
-
#: ../classes/admin/emails/class-wc-notify-vendor.php:
|
485 |
msgid "Enable this email notification"
|
486 |
msgstr ""
|
487 |
|
@@ -501,14 +527,14 @@ msgstr ""
|
|
501 |
#: ../classes/admin/emails/class-wc-approve-vendor.php:136
|
502 |
#: ../classes/admin/emails/class-wc-notify-admin.php:147
|
503 |
#: ../classes/admin/emails/class-wc-notify-shipped.php:169
|
504 |
-
#: ../classes/admin/emails/class-wc-notify-vendor.php:
|
505 |
msgid "Subject"
|
506 |
msgstr ""
|
507 |
|
508 |
#: ../classes/admin/emails/class-wc-approve-vendor.php:138
|
509 |
#: ../classes/admin/emails/class-wc-notify-admin.php:149
|
510 |
#: ../classes/admin/emails/class-wc-notify-shipped.php:171
|
511 |
-
#: ../classes/admin/emails/class-wc-notify-vendor.php:
|
512 |
#, php-format
|
513 |
msgid ""
|
514 |
"This controls the email subject line. Leave blank to use the default "
|
@@ -518,14 +544,14 @@ msgstr ""
|
|
518 |
#: ../classes/admin/emails/class-wc-approve-vendor.php:143
|
519 |
#: ../classes/admin/emails/class-wc-notify-admin.php:154
|
520 |
#: ../classes/admin/emails/class-wc-notify-shipped.php:176
|
521 |
-
#: ../classes/admin/emails/class-wc-notify-vendor.php:
|
522 |
msgid "Email Heading"
|
523 |
msgstr ""
|
524 |
|
525 |
#: ../classes/admin/emails/class-wc-approve-vendor.php:145
|
526 |
#: ../classes/admin/emails/class-wc-notify-admin.php:156
|
527 |
#: ../classes/admin/emails/class-wc-notify-shipped.php:178
|
528 |
-
#: ../classes/admin/emails/class-wc-notify-vendor.php:
|
529 |
#, php-format
|
530 |
msgid ""
|
531 |
"This controls the main heading contained within the email notification. "
|
@@ -535,35 +561,35 @@ msgstr ""
|
|
535 |
#: ../classes/admin/emails/class-wc-approve-vendor.php:150
|
536 |
#: ../classes/admin/emails/class-wc-notify-admin.php:161
|
537 |
#: ../classes/admin/emails/class-wc-notify-shipped.php:183
|
538 |
-
#: ../classes/admin/emails/class-wc-notify-vendor.php:
|
539 |
msgid "Email type"
|
540 |
msgstr ""
|
541 |
|
542 |
#: ../classes/admin/emails/class-wc-approve-vendor.php:152
|
543 |
#: ../classes/admin/emails/class-wc-notify-admin.php:163
|
544 |
#: ../classes/admin/emails/class-wc-notify-shipped.php:185
|
545 |
-
#: ../classes/admin/emails/class-wc-notify-vendor.php:
|
546 |
msgid "Choose which format of email to send."
|
547 |
msgstr ""
|
548 |
|
549 |
#: ../classes/admin/emails/class-wc-approve-vendor.php:156
|
550 |
#: ../classes/admin/emails/class-wc-notify-admin.php:167
|
551 |
#: ../classes/admin/emails/class-wc-notify-shipped.php:189
|
552 |
-
#: ../classes/admin/emails/class-wc-notify-vendor.php:
|
553 |
msgid "Plain text"
|
554 |
msgstr ""
|
555 |
|
556 |
#: ../classes/admin/emails/class-wc-approve-vendor.php:157
|
557 |
#: ../classes/admin/emails/class-wc-notify-admin.php:168
|
558 |
#: ../classes/admin/emails/class-wc-notify-shipped.php:190
|
559 |
-
#: ../classes/admin/emails/class-wc-notify-vendor.php:
|
560 |
msgid "HTML"
|
561 |
msgstr ""
|
562 |
|
563 |
#: ../classes/admin/emails/class-wc-approve-vendor.php:158
|
564 |
#: ../classes/admin/emails/class-wc-notify-admin.php:169
|
565 |
#: ../classes/admin/emails/class-wc-notify-shipped.php:191
|
566 |
-
#: ../classes/admin/emails/class-wc-notify-vendor.php:
|
567 |
msgid "Multipart"
|
568 |
msgstr ""
|
569 |
|
@@ -621,20 +647,20 @@ msgstr ""
|
|
621 |
msgid "[{blogname}] New customer order ({order_number}) - {order_date}"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: ../classes/admin/emails/class-wc-notify-vendor.php:
|
625 |
msgid "Commission Subtotal:"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: ../classes/admin/emails/class-wc-notify-vendor.php:
|
629 |
msgid "Tax Subtotal:"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: ../classes/admin/emails/class-wc-notify-vendor.php:
|
633 |
msgid "Shipping Subtotal:"
|
634 |
msgstr ""
|
635 |
|
636 |
#: ../classes/admin/settings/classes/sf-class-format-options.php:211
|
637 |
-
#: ../classes/admin/settings/classes/sf-class-settings.php:
|
638 |
msgid "Select a page..."
|
639 |
msgstr ""
|
640 |
|
@@ -666,8 +692,10 @@ msgstr ""
|
|
666 |
|
667 |
#: ../classes/admin/settings/sf-options.php:9
|
668 |
msgid ""
|
669 |
-
"The default rate you pay each vendor for a product sale.
|
670 |
-
"
|
|
|
|
|
671 |
msgstr ""
|
672 |
|
673 |
#: ../classes/admin/settings/sf-options.php:20
|
@@ -705,7 +733,7 @@ msgid ""
|
|
705 |
msgstr ""
|
706 |
|
707 |
#: ../classes/admin/settings/sf-options.php:43
|
708 |
-
#: ../classes/admin/settings/sf-options.php:
|
709 |
msgid "Taxes"
|
710 |
msgstr ""
|
711 |
|
@@ -723,7 +751,9 @@ msgstr ""
|
|
723 |
|
724 |
#: ../classes/admin/settings/sf-options.php:54
|
725 |
msgid ""
|
726 |
-
"
|
|
|
|
|
727 |
msgstr ""
|
728 |
|
729 |
#: ../classes/admin/settings/sf-options.php:60
|
@@ -737,15 +767,17 @@ msgstr ""
|
|
737 |
#: ../classes/admin/settings/sf-options.php:64
|
738 |
msgid ""
|
739 |
"Enable HTML for a vendor's shop description by default. You can enable or "
|
740 |
-
"disable this per vendor by editing the vendors
|
741 |
msgstr ""
|
742 |
|
743 |
#: ../classes/admin/settings/sf-options.php:71
|
744 |
-
msgid "Vendor
|
745 |
msgstr ""
|
746 |
|
747 |
#: ../classes/admin/settings/sf-options.php:72
|
748 |
-
msgid "
|
|
|
|
|
749 |
msgstr ""
|
750 |
|
751 |
#: ../classes/admin/settings/sf-options.php:79
|
@@ -791,333 +823,373 @@ msgid "User Email"
|
|
791 |
msgstr ""
|
792 |
|
793 |
#: ../classes/admin/settings/sf-options.php:103
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
794 |
msgid "Product Add Page"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: ../classes/admin/settings/sf-options.php:
|
798 |
msgid "Configure what to hide from all vendors when adding a product"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: ../classes/admin/settings/sf-options.php:
|
802 |
msgid "Left side panel"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: ../classes/admin/settings/sf-options.php:
|
806 |
msgid ""
|
807 |
-
"CHECKING these boxes will HIDE these areas of the add product page for "
|
808 |
"vendors"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: ../classes/admin/settings/sf-options.php:
|
812 |
msgid "Inventory"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: ../classes/admin/settings/sf-options.php:
|
816 |
msgid "Linked Products"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: ../classes/admin/settings/sf-options.php:
|
820 |
msgid "Attributes"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: ../classes/admin/settings/sf-options.php:
|
824 |
msgid "Advanced"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: ../classes/admin/settings/sf-options.php:
|
828 |
msgid "Types"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: ../classes/admin/settings/sf-options.php:
|
832 |
msgid "CHECKING these boxes will HIDE these product types from the vendor"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: ../classes/admin/settings/sf-options.php:
|
836 |
msgid "Simple"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: ../classes/admin/settings/sf-options.php:
|
840 |
msgid "Variable"
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: ../classes/admin/settings/sf-options.php:
|
844 |
msgid "Grouped"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: ../classes/admin/settings/sf-options.php:
|
848 |
msgid "External / affiliate"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: ../classes/admin/settings/sf-options.php:
|
852 |
msgid "Type options"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: ../classes/admin/settings/sf-options.php:
|
856 |
-
msgid "
|
|
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: ../classes/admin/settings/sf-options.php:
|
860 |
msgid "Virtual"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: ../classes/admin/settings/sf-options.php:
|
864 |
msgid "Downloadable"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: ../classes/admin/settings/sf-options.php:
|
868 |
msgid "Miscellaneous"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: ../classes/admin/settings/sf-options.php:
|
872 |
msgid "SKU"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: ../classes/admin/settings/sf-options.php:
|
876 |
msgid "Featured"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: ../classes/admin/settings/sf-options.php:
|
880 |
msgid "Duplicate Product"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: ../classes/admin/settings/sf-options.php:
|
884 |
msgid "Stylesheet"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: ../classes/admin/settings/sf-options.php:
|
888 |
msgid ""
|
889 |
"You can add CSS in this textarea, which will be loaded on the product add/"
|
890 |
"edit page for vendors."
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: ../classes/admin/settings/sf-options.php:
|
894 |
msgid "Permissions"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: ../classes/admin/settings/sf-options.php:
|
898 |
msgid "General permissions used around the shop"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: ../classes/admin/settings/sf-options.php:
|
902 |
msgid "View orders"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: ../classes/admin/settings/sf-options.php:
|
906 |
msgid "Show customer details such as email, address, name, etc, for each order"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: ../classes/admin/settings/sf-options.php:
|
910 |
msgid "View comments"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: ../classes/admin/settings/sf-options.php:
|
914 |
msgid "View all vendor comments for an order on the frontend"
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: ../classes/admin/settings/sf-options.php:
|
918 |
msgid "Submit comments"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: ../classes/admin/settings/sf-options.php:
|
922 |
msgid ""
|
923 |
"Submit comments for an order on the frontend. Eg, tracking ID for a product"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: ../classes/admin/settings/sf-options.php:
|
927 |
msgid "View email addresses"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: ../classes/admin/settings/sf-options.php:
|
931 |
msgid ""
|
932 |
"While viewing order details on the frontend, you can disable or enable email "
|
933 |
"addresses"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: ../classes/admin/settings/sf-options.php:
|
937 |
msgid "Export a CSV file of orders for a product"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: ../classes/admin/settings/sf-options.php:
|
941 |
msgid "Vendors could export orders for a product on the frontend"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: ../classes/admin/settings/sf-options.php:
|
945 |
msgid "Reports"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: ../classes/admin/settings/sf-options.php:
|
949 |
msgid ""
|
950 |
"<strike>View backend sales reports</strike>. <strong>Depreciated</strong>"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: ../classes/admin/settings/sf-options.php:
|
954 |
msgid ""
|
955 |
"This option has been removed and will no longer function. It will be "
|
956 |
-
"completely removed in future versions.
|
957 |
-
"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: ../classes/admin/settings/sf-options.php:
|
961 |
msgid "View Frontend sales reports"
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: ../classes/admin/settings/sf-options.php:
|
965 |
msgid ""
|
966 |
-
"Sales table on the frontend on the
|
967 |
-
"display sales data that pertain to their products"
|
|
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: ../classes/admin/settings/sf-options.php:
|
971 |
msgid "Submit products"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: ../classes/admin/settings/sf-options.php:
|
975 |
msgid ""
|
976 |
-
"
|
977 |
-
"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: ../classes/admin/settings/sf-options.php:
|
981 |
msgid "Edit live products"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: ../classes/admin/settings/sf-options.php:
|
985 |
msgid ""
|
986 |
"Vendors could edit an approved product after it has already gone live. There "
|
987 |
"is no approval or review after editing a live product. This could be "
|
988 |
"dangerous with malicious vendors, so take caution."
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: ../classes/admin/settings/sf-options.php:
|
992 |
msgid "Submit products live without requiring approval"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: ../classes/admin/settings/sf-options.php:
|
996 |
msgid ""
|
997 |
"Vendors can submit products without review or approval from a shop admin. "
|
998 |
"This could be dangerous with malicious vendors, so take caution."
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: ../classes/admin/settings/sf-options.php:
|
1002 |
msgid "Pages"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: ../classes/admin/settings/sf-options.php:
|
1006 |
msgid "Page configuration"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: ../classes/admin/settings/sf-options.php:
|
1010 |
msgid "Vendor dashboard"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: ../classes/admin/settings/sf-options.php:
|
1014 |
msgid ""
|
1015 |
"Choose the page that has the shortcode <code>[wcv_vendor_dashboard]</"
|
1016 |
-
"code><br
|
1017 |
-
"
|
|
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: ../classes/admin/settings/sf-options.php:
|
1021 |
msgid "Shop settings"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: ../classes/admin/settings/sf-options.php:
|
1025 |
msgid ""
|
1026 |
"Choose the page that has the shortcode <code>[wcv_shop_settings]</code><br/"
|
1027 |
-
">These are the shop settings a vendor can configure."
|
|
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: ../classes/admin/settings/sf-options.php:
|
1031 |
msgid "Orders page"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: ../classes/admin/settings/sf-options.php:
|
1035 |
msgid ""
|
1036 |
"Choose the page that has the shortcode <code>[wcv_orders]</code><br/>By "
|
1037 |
-
"default,
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: ../classes/admin/settings/sf-options.php:
|
1041 |
msgid "Vendor terms"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: ../classes/admin/settings/sf-options.php:
|
1045 |
msgid ""
|
1046 |
"These terms are shown to a user when submitting an application to become a "
|
1047 |
-
"vendor.<br/>If left blank, no terms will be shown to the applicant."
|
|
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: ../classes/admin/settings/sf-options.php:
|
1051 |
msgid "payments"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: ../classes/admin/settings/sf-options.php:
|
1055 |
msgid "Payments"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: ../classes/admin/settings/sf-options.php:
|
1059 |
-
msgid "
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: ../classes/admin/settings/sf-options.php:
|
1063 |
#, php-format
|
1064 |
msgid "Total commission currently due: %s. <a href=\"%s\">View details</a>."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: ../classes/admin/settings/sf-options.php:
|
1068 |
#, php-format
|
1069 |
msgid ""
|
1070 |
"Make sure you update your PayPal Adaptive Payments settings <a href=\"%s"
|
1071 |
-
"\">here</a>."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: ../classes/admin/settings/sf-options.php:
|
1075 |
msgid "Instant pay"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: ../classes/admin/settings/sf-options.php:
|
1079 |
-
msgid "
|
|
|
|
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: ../classes/admin/settings/sf-options.php:
|
1083 |
msgid ""
|
1084 |
"For this to work, customers must checkout with the PayPal Adaptive Payments "
|
1085 |
"gateway. Using any other gateways will not pay vendors instantly"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: ../classes/admin/settings/sf-options.php:
|
1089 |
msgid "Payment schedule"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: ../classes/admin/settings/sf-options.php:
|
1093 |
msgid "Note: Schedule will only work if instant pay is unchecked"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: ../classes/admin/settings/sf-options.php:
|
1097 |
msgid "Weekly"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: ../classes/admin/settings/sf-options.php:
|
1101 |
msgid "Biweekly"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: ../classes/admin/settings/sf-options.php:
|
1105 |
msgid "Monthly"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: ../classes/admin/settings/sf-options.php:
|
1109 |
msgid "Manual"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: ../classes/admin/settings/sf-options.php:
|
1113 |
msgid "Now"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: ../classes/admin/settings/sf-options.php:
|
1117 |
msgid "Email notification"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: ../classes/admin/settings/sf-options.php:
|
1121 |
msgid ""
|
1122 |
"Send the WooCommerce admin an email each time a payment has been made via "
|
1123 |
"the payment schedule options above"
|
@@ -1183,8 +1255,7 @@ msgstr ""
|
|
1183 |
msgid "Vendor Dashboard"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: ../classes/front/class-vendor-
|
1187 |
-
#: ../classes/front/class-vendor-shop.php:283
|
1188 |
msgid "Sold by"
|
1189 |
msgstr ""
|
1190 |
|
@@ -1264,9 +1335,10 @@ msgid "Apply to become a vendor? "
|
|
1264 |
msgstr ""
|
1265 |
|
1266 |
#: ../classes/front/signup/class-vendor-signup.php:54
|
1267 |
-
#: ../templates/dashboard/denied.php:33
|
1268 |
#, php-format
|
1269 |
-
msgid "
|
|
|
|
|
1270 |
msgstr ""
|
1271 |
|
1272 |
#: ../classes/front/signup/class-vendor-signup.php:88
|
@@ -1520,6 +1592,11 @@ msgstr ""
|
|
1520 |
msgid "Your account is not setup as a vendor."
|
1521 |
msgstr ""
|
1522 |
|
|
|
|
|
|
|
|
|
|
|
1523 |
#: ../templates/dashboard/denied.php:53
|
1524 |
msgid "Submit"
|
1525 |
msgstr ""
|
@@ -1552,11 +1629,11 @@ msgstr ""
|
|
1552 |
msgid "Links"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: ../templates/dashboard/orders.php:
|
1556 |
msgid "Tracking"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
-
#: ../templates/dashboard/orders.php:
|
1560 |
msgid "You have no orders during this period."
|
1561 |
msgstr ""
|
1562 |
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: WC Vendors\n"
|
5 |
+
"POT-Creation-Date: 2016-01-25 15:08+1000\n"
|
6 |
"PO-Revision-Date: 2015-04-24 09:29+1000\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: WC Vendors <support@wcvendors.com>\n"
|
25 |
msgstr ""
|
26 |
|
27 |
#: ../class-wc-vendors.php:81 ../classes/admin/class-admin-reports.php:41
|
28 |
+
#: ../classes/admin/class-admin-users.php:397
|
29 |
msgid "WC Vendors"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: ../class-wc-vendors.php:109
|
33 |
msgid ""
|
34 |
"<b>WC Vendors is disabled</b>. WC Vendors requires a minimum of WooCommerce "
|
35 |
"v2.4.0."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: ../class-wc-vendors.php:248 ../classes/admin/settings/sf-options.php:183
|
39 |
msgid "Capabilities"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: ../class-wc-vendors.php:271 ../classes/admin/class-admin-page.php:253
|
43 |
+
#: ../classes/admin/class-admin-reports.php:175
|
44 |
+
#: ../classes/admin/class-admin-reports.php:455
|
45 |
#: ../classes/admin/class-product-meta.php:46
|
46 |
#: ../classes/admin/class-product-meta.php:187
|
47 |
#: ../classes/admin/class-product-meta.php:223 ../classes/class-install.php:66
|
48 |
msgid "Vendor"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: ../class-wc-vendors.php:273 ../classes/admin/settings/sf-options.php:4
|
52 |
msgid "General"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: ../class-wc-vendors.php:311
|
56 |
msgid "Documentation/KB"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: ../class-wc-vendors.php:312
|
60 |
msgid "Help Forums"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: ../class-wc-vendors.php:313
|
64 |
msgid "Paid Support"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: ../class-wc-vendors.php:335
|
68 |
#, php-format
|
69 |
msgid ""
|
70 |
"WC Vendors requires the Vendor shop page value be set <a href=\"%s\">click "
|
71 |
"here to set it.</a> | <a href=\"%s\">Hide Notice</a>"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: ../class-wc-vendors.php:343
|
75 |
#, php-format
|
76 |
msgid ""
|
77 |
"You must save your permalinks once you have modified your vendor page. <a "
|
95 |
msgstr ""
|
96 |
|
97 |
#: ../classes/admin/class-admin-page.php:251
|
98 |
+
#: ../classes/admin/class-admin-reports.php:174
|
99 |
#: ../templates/dashboard/reports.php:17
|
100 |
#: ../templates/emails/notify-vendor-shipped.php:22
|
101 |
#: ../templates/emails/vendor-new-order.php:22
|
108 |
msgstr ""
|
109 |
|
110 |
#: ../classes/admin/class-admin-page.php:254
|
111 |
+
#: ../classes/admin/class-admin-reports.php:176
|
112 |
+
#: ../classes/admin/class-admin-reports.php:374
|
113 |
#: ../classes/admin/class-vendor-admin-dashboard.php:286
|
114 |
#: ../templates/dashboard/orders.php:35
|
115 |
msgid "Total"
|
116 |
msgstr ""
|
117 |
|
118 |
#: ../classes/admin/class-admin-page.php:255
|
119 |
+
#: ../classes/admin/class-admin-reports.php:178
|
120 |
+
#: ../classes/admin/class-admin-reports.php:458
|
121 |
msgid "Status"
|
122 |
msgstr ""
|
123 |
|
182 |
msgid "Commission by product"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: ../classes/admin/class-admin-reports.php:62
|
186 |
+
#: ../classes/admin/class-admin-reports.php:345
|
187 |
+
msgid "Commission Totals"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: ../classes/admin/class-admin-reports.php:63
|
191 |
+
msgid ""
|
192 |
+
"Commission totals for all vendors includes shipping and taxes. By default no "
|
193 |
+
"date range is used and all due commissions are returned. Use the date range "
|
194 |
+
"to filter."
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: ../classes/admin/class-admin-reports.php:121
|
198 |
+
#: ../classes/admin/class-admin-reports.php:437
|
199 |
#: ../templates/dashboard/date-picker.php:3
|
200 |
msgid "From:"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: ../classes/admin/class-admin-reports.php:123
|
204 |
+
#: ../classes/admin/class-admin-reports.php:439
|
205 |
#: ../templates/dashboard/date-picker.php:7
|
206 |
msgid "To:"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: ../classes/admin/class-admin-reports.php:125
|
210 |
+
#: ../classes/admin/class-admin-reports.php:283
|
211 |
+
#: ../classes/admin/class-admin-reports.php:448
|
212 |
#: ../templates/dashboard/date-picker.php:12
|
213 |
msgid "Show"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: ../classes/admin/class-admin-reports.php:131
|
217 |
msgid "Total paid in range"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: ../classes/admin/class-admin-reports.php:134
|
221 |
+
#: ../classes/admin/class-admin-reports.php:141
|
222 |
+
#: ../classes/admin/class-admin-reports.php:148
|
223 |
msgid "n/a"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: ../classes/admin/class-admin-reports.php:138
|
227 |
msgid "Total due in range"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: ../classes/admin/class-admin-reports.php:145
|
231 |
msgid "Total reversed in range"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: ../classes/admin/class-admin-reports.php:155
|
235 |
msgid "Recent Commission"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: ../classes/admin/class-admin-reports.php:173
|
239 |
#: ../classes/front/orders/class-orders.php:173
|
240 |
#: ../templates/dashboard/orders.php:33
|
241 |
msgid "Order"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: ../classes/admin/class-admin-reports.php:177
|
245 |
msgid "Date & Time"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: ../classes/admin/class-admin-reports.php:186
|
249 |
msgid "N/A"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: ../classes/admin/class-admin-reports.php:191
|
253 |
msgid "D j M Y \\a\\t h:ia"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: ../classes/admin/class-admin-reports.php:200
|
257 |
msgid "No commission yet"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: ../classes/admin/class-admin-reports.php:234
|
261 |
msgid "Show:"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: ../classes/admin/class-admin-reports.php:243
|
265 |
msgid "Search for a product…"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: ../classes/admin/class-admin-reports.php:246
|
269 |
msgid "Type in a product name to start searching..."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: ../classes/admin/class-admin-reports.php:278
|
273 |
msgid "Select a vendor…"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: ../classes/admin/class-admin-reports.php:344
|
277 |
msgid "Month"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: ../classes/admin/class-admin-reports.php:346
|
|
|
|
|
|
|
|
|
281 |
msgid "Tax"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: ../classes/admin/class-admin-reports.php:347
|
285 |
#: ../classes/admin/settings/sf-options.php:52
|
286 |
+
#: ../classes/admin/settings/sf-options.php:127
|
287 |
#: ../templates/dashboard/orders.php:34 ../templates/orders/orders.php:115
|
288 |
msgid "Shipping"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: ../classes/admin/class-admin-reports.php:348
|
292 |
+
#: ../classes/admin/class-admin-reports.php:445
|
293 |
msgid "Reversed"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: ../classes/admin/class-admin-reports.php:349
|
297 |
+
#: ../classes/admin/class-admin-reports.php:444
|
298 |
msgid "Paid"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: ../classes/admin/class-admin-reports.php:350
|
302 |
+
#: ../classes/admin/class-admin-reports.php:443
|
303 |
msgid "Due"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: ../classes/admin/class-admin-reports.php:456
|
307 |
+
msgid "Tax Total"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: ../classes/admin/class-admin-reports.php:457
|
311 |
+
msgid "Shipping Total"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: ../classes/admin/class-admin-reports.php:459
|
315 |
+
msgid "Commission Total"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: ../classes/admin/class-admin-reports.php:481
|
319 |
+
msgid "No commissions found."
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: ../classes/admin/class-admin-users.php:407
|
323 |
msgid "Enable HTML for the shop description"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: ../classes/admin/class-admin-users.php:413
|
327 |
msgid "Shop name"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: ../classes/admin/class-admin-users.php:420
|
331 |
msgid "PayPal E-mail"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: ../classes/admin/class-admin-users.php:421
|
335 |
msgid "required"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: ../classes/admin/class-admin-users.php:428
|
339 |
msgid "Commission rate"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: ../classes/admin/class-admin-users.php:429
|
343 |
#: ../classes/admin/class-product-meta.php:174
|
344 |
msgid "Leave blank for default"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: ../classes/admin/class-admin-users.php:435
|
348 |
msgid "Give Tax"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: ../classes/admin/class-admin-users.php:440
|
352 |
msgid "Tax override for vendor"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: ../classes/admin/class-admin-users.php:446
|
356 |
msgid "Give Shipping"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: ../classes/admin/class-admin-users.php:451
|
360 |
msgid "Shipping override for vendor"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: ../classes/admin/class-admin-users.php:457
|
364 |
#: ../classes/admin/views/html-vendor-settings-page.php:30
|
|
|
365 |
#: ../templates/dashboard/settings/seller-info.php:3
|
366 |
msgid "Seller info"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: ../classes/admin/class-admin-users.php:462
|
370 |
msgid "Shop description"
|
371 |
msgstr ""
|
372 |
|
377 |
|
378 |
#: ../classes/admin/class-vendor-admin-dashboard.php:21
|
379 |
#: ../classes/admin/class-vendor-admin-dashboard.php:146
|
380 |
+
#: ../classes/admin/settings/sf-options.php:187
|
381 |
#: ../classes/class-install.php:166 ../templates/dashboard/orders.php:24
|
382 |
msgid "Orders"
|
383 |
msgstr ""
|
403 |
msgstr ""
|
404 |
|
405 |
#: ../classes/admin/class-vendor-admin-dashboard.php:285
|
406 |
+
#: ../classes/admin/settings/sf-options.php:118
|
407 |
+
#: ../classes/admin/settings/sf-options.php:245
|
408 |
msgid "Products"
|
409 |
msgstr ""
|
410 |
|
411 |
#: ../classes/admin/class-vendor-admin-dashboard.php:289
|
412 |
+
#: ../templates/dashboard/orders.php:92
|
413 |
msgid "Shipped"
|
414 |
msgstr ""
|
415 |
|
422 |
msgid "Orders marked shipped."
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: ../classes/admin/class-vendor-admin-dashboard.php:465
|
426 |
#: ../templates/orders/orders.php:84
|
427 |
#, php-format
|
428 |
msgid "Comments (%s)"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: ../classes/admin/class-vendor-admin-dashboard.php:468
|
432 |
msgid "Comments to Customer"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: ../classes/admin/class-vendor-admin-dashboard.php:477
|
436 |
#: ../templates/orders/comments/existing-comments.php:9
|
437 |
#, php-format
|
438 |
msgid "added %s ago"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: ../classes/admin/class-vendor-admin-dashboard.php:483
|
442 |
msgid "No comments currently to customer."
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: ../classes/admin/class-vendor-admin-dashboard.php:492
|
446 |
#: ../templates/orders/comments/add-new-comment.php:11
|
447 |
msgid "Add comment"
|
448 |
msgstr ""
|
455 |
msgid "Deny"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: ../classes/admin/class-vendor-applicants.php:73
|
459 |
msgid "Vendor has been <b>denied</b>."
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: ../classes/admin/class-vendor-applicants.php:84
|
463 |
msgid "Vendor has been <b>approved</b>."
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: ../classes/admin/class-vendor-applicants.php:98
|
467 |
msgid "Pending Vendors"
|
468 |
msgstr ""
|
469 |
|
480 |
msgid "denied"
|
481 |
msgstr ""
|
482 |
|
|
|
|
|
|
|
|
|
|
|
|
|
483 |
#: ../classes/admin/emails/class-wc-approve-vendor.php:28
|
484 |
msgid "Vendor Application"
|
485 |
msgstr ""
|
499 |
#: ../classes/admin/emails/class-wc-approve-vendor.php:123
|
500 |
#: ../classes/admin/emails/class-wc-notify-admin.php:134
|
501 |
#: ../classes/admin/emails/class-wc-notify-shipped.php:163
|
502 |
+
#: ../classes/admin/emails/class-wc-notify-vendor.php:256
|
503 |
#: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:62
|
504 |
msgid "Enable/Disable"
|
505 |
msgstr ""
|
507 |
#: ../classes/admin/emails/class-wc-approve-vendor.php:125
|
508 |
#: ../classes/admin/emails/class-wc-notify-admin.php:136
|
509 |
#: ../classes/admin/emails/class-wc-notify-shipped.php:165
|
510 |
+
#: ../classes/admin/emails/class-wc-notify-vendor.php:258
|
511 |
msgid "Enable this email notification"
|
512 |
msgstr ""
|
513 |
|
527 |
#: ../classes/admin/emails/class-wc-approve-vendor.php:136
|
528 |
#: ../classes/admin/emails/class-wc-notify-admin.php:147
|
529 |
#: ../classes/admin/emails/class-wc-notify-shipped.php:169
|
530 |
+
#: ../classes/admin/emails/class-wc-notify-vendor.php:262
|
531 |
msgid "Subject"
|
532 |
msgstr ""
|
533 |
|
534 |
#: ../classes/admin/emails/class-wc-approve-vendor.php:138
|
535 |
#: ../classes/admin/emails/class-wc-notify-admin.php:149
|
536 |
#: ../classes/admin/emails/class-wc-notify-shipped.php:171
|
537 |
+
#: ../classes/admin/emails/class-wc-notify-vendor.php:264
|
538 |
#, php-format
|
539 |
msgid ""
|
540 |
"This controls the email subject line. Leave blank to use the default "
|
544 |
#: ../classes/admin/emails/class-wc-approve-vendor.php:143
|
545 |
#: ../classes/admin/emails/class-wc-notify-admin.php:154
|
546 |
#: ../classes/admin/emails/class-wc-notify-shipped.php:176
|
547 |
+
#: ../classes/admin/emails/class-wc-notify-vendor.php:269
|
548 |
msgid "Email Heading"
|
549 |
msgstr ""
|
550 |
|
551 |
#: ../classes/admin/emails/class-wc-approve-vendor.php:145
|
552 |
#: ../classes/admin/emails/class-wc-notify-admin.php:156
|
553 |
#: ../classes/admin/emails/class-wc-notify-shipped.php:178
|
554 |
+
#: ../classes/admin/emails/class-wc-notify-vendor.php:271
|
555 |
#, php-format
|
556 |
msgid ""
|
557 |
"This controls the main heading contained within the email notification. "
|
561 |
#: ../classes/admin/emails/class-wc-approve-vendor.php:150
|
562 |
#: ../classes/admin/emails/class-wc-notify-admin.php:161
|
563 |
#: ../classes/admin/emails/class-wc-notify-shipped.php:183
|
564 |
+
#: ../classes/admin/emails/class-wc-notify-vendor.php:276
|
565 |
msgid "Email type"
|
566 |
msgstr ""
|
567 |
|
568 |
#: ../classes/admin/emails/class-wc-approve-vendor.php:152
|
569 |
#: ../classes/admin/emails/class-wc-notify-admin.php:163
|
570 |
#: ../classes/admin/emails/class-wc-notify-shipped.php:185
|
571 |
+
#: ../classes/admin/emails/class-wc-notify-vendor.php:278
|
572 |
msgid "Choose which format of email to send."
|
573 |
msgstr ""
|
574 |
|
575 |
#: ../classes/admin/emails/class-wc-approve-vendor.php:156
|
576 |
#: ../classes/admin/emails/class-wc-notify-admin.php:167
|
577 |
#: ../classes/admin/emails/class-wc-notify-shipped.php:189
|
578 |
+
#: ../classes/admin/emails/class-wc-notify-vendor.php:282
|
579 |
msgid "Plain text"
|
580 |
msgstr ""
|
581 |
|
582 |
#: ../classes/admin/emails/class-wc-approve-vendor.php:157
|
583 |
#: ../classes/admin/emails/class-wc-notify-admin.php:168
|
584 |
#: ../classes/admin/emails/class-wc-notify-shipped.php:190
|
585 |
+
#: ../classes/admin/emails/class-wc-notify-vendor.php:283
|
586 |
msgid "HTML"
|
587 |
msgstr ""
|
588 |
|
589 |
#: ../classes/admin/emails/class-wc-approve-vendor.php:158
|
590 |
#: ../classes/admin/emails/class-wc-notify-admin.php:169
|
591 |
#: ../classes/admin/emails/class-wc-notify-shipped.php:191
|
592 |
+
#: ../classes/admin/emails/class-wc-notify-vendor.php:284
|
593 |
msgid "Multipart"
|
594 |
msgstr ""
|
595 |
|
647 |
msgid "[{blogname}] New customer order ({order_number}) - {order_date}"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: ../classes/admin/emails/class-wc-notify-vendor.php:111
|
651 |
msgid "Commission Subtotal:"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: ../classes/admin/emails/class-wc-notify-vendor.php:117
|
655 |
msgid "Tax Subtotal:"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: ../classes/admin/emails/class-wc-notify-vendor.php:125
|
659 |
msgid "Shipping Subtotal:"
|
660 |
msgstr ""
|
661 |
|
662 |
#: ../classes/admin/settings/classes/sf-class-format-options.php:211
|
663 |
+
#: ../classes/admin/settings/classes/sf-class-settings.php:778
|
664 |
msgid "Select a page..."
|
665 |
msgstr ""
|
666 |
|
692 |
|
693 |
#: ../classes/admin/settings/sf-options.php:9
|
694 |
msgid ""
|
695 |
+
"The default rate you pay each vendor for a product sale. <br>You can also "
|
696 |
+
"give vendors their own individual commission rates by editing the vendors "
|
697 |
+
"user account.<br>Also, you can edit an individual products commission to "
|
698 |
+
"override both of these settings on a per product basis."
|
699 |
msgstr ""
|
700 |
|
701 |
#: ../classes/admin/settings/sf-options.php:20
|
733 |
msgstr ""
|
734 |
|
735 |
#: ../classes/admin/settings/sf-options.php:43
|
736 |
+
#: ../classes/admin/settings/sf-options.php:166
|
737 |
msgid "Taxes"
|
738 |
msgstr ""
|
739 |
|
751 |
|
752 |
#: ../classes/admin/settings/sf-options.php:54
|
753 |
msgid ""
|
754 |
+
"WC Vendors Free - Give vendors shipping if using Per Product Shipping "
|
755 |
+
"gateway. WC Vendors Pro - Give vendors shipping when using Vendor "
|
756 |
+
"Shipping. No other shipping module is compatible with this option."
|
757 |
msgstr ""
|
758 |
|
759 |
#: ../classes/admin/settings/sf-options.php:60
|
767 |
#: ../classes/admin/settings/sf-options.php:64
|
768 |
msgid ""
|
769 |
"Enable HTML for a vendor's shop description by default. You can enable or "
|
770 |
+
"disable this per vendor by editing the vendors user account."
|
771 |
msgstr ""
|
772 |
|
773 |
#: ../classes/admin/settings/sf-options.php:71
|
774 |
+
msgid "Vendor Shop Page"
|
775 |
msgstr ""
|
776 |
|
777 |
#: ../classes/admin/settings/sf-options.php:72
|
778 |
+
msgid ""
|
779 |
+
"Enter one word for the URI. If you enter \"<strong>vendors</strong>\" your "
|
780 |
+
"vendors store will be <code>yourdomain.com/vendors/store-name/</code>"
|
781 |
msgstr ""
|
782 |
|
783 |
#: ../classes/admin/settings/sf-options.php:79
|
823 |
msgstr ""
|
824 |
|
825 |
#: ../classes/admin/settings/sf-options.php:103
|
826 |
+
msgid "Sold By Label"
|
827 |
+
msgstr ""
|
828 |
+
|
829 |
+
#: ../classes/admin/settings/sf-options.php:104
|
830 |
+
msgid "The sold by label used on the site and emails."
|
831 |
+
msgstr ""
|
832 |
+
|
833 |
+
#: ../classes/admin/settings/sf-options.php:107
|
834 |
+
msgid "Sold By: "
|
835 |
+
msgstr ""
|
836 |
+
|
837 |
+
#: ../classes/admin/settings/sf-options.php:111
|
838 |
+
msgid "Seller Info Label"
|
839 |
+
msgstr ""
|
840 |
+
|
841 |
+
#: ../classes/admin/settings/sf-options.php:112
|
842 |
+
msgid "The seller info tab title on the single product page."
|
843 |
+
msgstr ""
|
844 |
+
|
845 |
+
#: ../classes/admin/settings/sf-options.php:115
|
846 |
+
msgid "Seller Info"
|
847 |
+
msgstr ""
|
848 |
+
|
849 |
+
#: ../classes/admin/settings/sf-options.php:119
|
850 |
msgid "Product Add Page"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: ../classes/admin/settings/sf-options.php:119
|
854 |
msgid "Configure what to hide from all vendors when adding a product"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: ../classes/admin/settings/sf-options.php:122
|
858 |
msgid "Left side panel"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: ../classes/admin/settings/sf-options.php:123
|
862 |
msgid ""
|
863 |
+
"CHECKING these boxes will **HIDE** these areas of the add product page for "
|
864 |
"vendors"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: ../classes/admin/settings/sf-options.php:126
|
868 |
msgid "Inventory"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: ../classes/admin/settings/sf-options.php:128
|
872 |
msgid "Linked Products"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: ../classes/admin/settings/sf-options.php:129
|
876 |
msgid "Attributes"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: ../classes/admin/settings/sf-options.php:130
|
880 |
msgid "Advanced"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: ../classes/admin/settings/sf-options.php:137
|
884 |
msgid "Types"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: ../classes/admin/settings/sf-options.php:138
|
888 |
msgid "CHECKING these boxes will HIDE these product types from the vendor"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: ../classes/admin/settings/sf-options.php:141
|
892 |
msgid "Simple"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: ../classes/admin/settings/sf-options.php:142
|
896 |
msgid "Variable"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: ../classes/admin/settings/sf-options.php:143
|
900 |
msgid "Grouped"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: ../classes/admin/settings/sf-options.php:144
|
904 |
msgid "External / affiliate"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: ../classes/admin/settings/sf-options.php:151
|
908 |
msgid "Type options"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: ../classes/admin/settings/sf-options.php:152
|
912 |
+
msgid ""
|
913 |
+
"CHECKING these boxes will **HIDE** these product options from the vendor"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: ../classes/admin/settings/sf-options.php:155
|
917 |
msgid "Virtual"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: ../classes/admin/settings/sf-options.php:156
|
921 |
msgid "Downloadable"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: ../classes/admin/settings/sf-options.php:163
|
925 |
msgid "Miscellaneous"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: ../classes/admin/settings/sf-options.php:167
|
929 |
msgid "SKU"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: ../classes/admin/settings/sf-options.php:168
|
933 |
msgid "Featured"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: ../classes/admin/settings/sf-options.php:169
|
937 |
msgid "Duplicate Product"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: ../classes/admin/settings/sf-options.php:176
|
941 |
msgid "Stylesheet"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: ../classes/admin/settings/sf-options.php:177
|
945 |
msgid ""
|
946 |
"You can add CSS in this textarea, which will be loaded on the product add/"
|
947 |
"edit page for vendors."
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: ../classes/admin/settings/sf-options.php:184
|
951 |
msgid "Permissions"
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: ../classes/admin/settings/sf-options.php:184
|
955 |
msgid "General permissions used around the shop"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: ../classes/admin/settings/sf-options.php:188
|
959 |
msgid "View orders"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: ../classes/admin/settings/sf-options.php:189
|
963 |
msgid "Show customer details such as email, address, name, etc, for each order"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: ../classes/admin/settings/sf-options.php:196
|
967 |
msgid "View comments"
|
968 |
msgstr ""
|
969 |
|
970 |
+
#: ../classes/admin/settings/sf-options.php:197
|
971 |
msgid "View all vendor comments for an order on the frontend"
|
972 |
msgstr ""
|
973 |
|
974 |
+
#: ../classes/admin/settings/sf-options.php:204
|
975 |
msgid "Submit comments"
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: ../classes/admin/settings/sf-options.php:205
|
979 |
msgid ""
|
980 |
"Submit comments for an order on the frontend. Eg, tracking ID for a product"
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: ../classes/admin/settings/sf-options.php:212
|
984 |
msgid "View email addresses"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: ../classes/admin/settings/sf-options.php:213
|
988 |
msgid ""
|
989 |
"While viewing order details on the frontend, you can disable or enable email "
|
990 |
"addresses"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: ../classes/admin/settings/sf-options.php:220
|
994 |
msgid "Export a CSV file of orders for a product"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: ../classes/admin/settings/sf-options.php:221
|
998 |
msgid "Vendors could export orders for a product on the frontend"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: ../classes/admin/settings/sf-options.php:228
|
1002 |
msgid "Reports"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: ../classes/admin/settings/sf-options.php:229
|
1006 |
msgid ""
|
1007 |
"<strike>View backend sales reports</strike>. <strong>Depreciated</strong>"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: ../classes/admin/settings/sf-options.php:230
|
1011 |
msgid ""
|
1012 |
"This option has been removed and will no longer function. It will be "
|
1013 |
+
"completely removed in future versions. Vendors should use their Vendor "
|
1014 |
+
"Dashboard for reports as all identical functionality is already there. "
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: ../classes/admin/settings/sf-options.php:237
|
1018 |
msgid "View Frontend sales reports"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: ../classes/admin/settings/sf-options.php:238
|
1022 |
msgid ""
|
1023 |
+
"Sales table on the frontend on the Vendor Dashboard page. The table will "
|
1024 |
+
"only display sales data that pertain to their products, and only for orders "
|
1025 |
+
"that are processing or completed."
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: ../classes/admin/settings/sf-options.php:246
|
1029 |
msgid "Submit products"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: ../classes/admin/settings/sf-options.php:247
|
1033 |
msgid ""
|
1034 |
+
"Check to allow vendors to list new products. Admin must approve new "
|
1035 |
+
"products by editing the product, and clicking Publish."
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: ../classes/admin/settings/sf-options.php:254
|
1039 |
msgid "Edit live products"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: ../classes/admin/settings/sf-options.php:255
|
1043 |
msgid ""
|
1044 |
"Vendors could edit an approved product after it has already gone live. There "
|
1045 |
"is no approval or review after editing a live product. This could be "
|
1046 |
"dangerous with malicious vendors, so take caution."
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: ../classes/admin/settings/sf-options.php:262
|
1050 |
msgid "Submit products live without requiring approval"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: ../classes/admin/settings/sf-options.php:263
|
1054 |
msgid ""
|
1055 |
"Vendors can submit products without review or approval from a shop admin. "
|
1056 |
"This could be dangerous with malicious vendors, so take caution."
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: ../classes/admin/settings/sf-options.php:269
|
1060 |
msgid "Pages"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: ../classes/admin/settings/sf-options.php:270
|
1064 |
msgid "Page configuration"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: ../classes/admin/settings/sf-options.php:273
|
1068 |
msgid "Vendor dashboard"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: ../classes/admin/settings/sf-options.php:274
|
1072 |
msgid ""
|
1073 |
"Choose the page that has the shortcode <code>[wcv_vendor_dashboard]</"
|
1074 |
+
"code><br/>. If this page is not set, you will break your site. If you "
|
1075 |
+
"upgrade to Pro, keep this page unchanged as both Pro Dashboard and this "
|
1076 |
+
"Dashboard page must be set."
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: ../classes/admin/settings/sf-options.php:281
|
1080 |
msgid "Shop settings"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: ../classes/admin/settings/sf-options.php:282
|
1084 |
msgid ""
|
1085 |
"Choose the page that has the shortcode <code>[wcv_shop_settings]</code><br/"
|
1086 |
+
">These are the shop settings a vendor can configure. By default, Vendor "
|
1087 |
+
"Dashboard > Shop Settings should have this shortcode."
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: ../classes/admin/settings/sf-options.php:289
|
1091 |
msgid "Orders page"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: ../classes/admin/settings/sf-options.php:290
|
1095 |
msgid ""
|
1096 |
"Choose the page that has the shortcode <code>[wcv_orders]</code><br/>By "
|
1097 |
+
"default, Vendor Dashboard > Orders should have the shortcode."
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: ../classes/admin/settings/sf-options.php:297
|
1101 |
msgid "Vendor terms"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: ../classes/admin/settings/sf-options.php:298
|
1105 |
msgid ""
|
1106 |
"These terms are shown to a user when submitting an application to become a "
|
1107 |
+
"vendor.<br/>If left blank, no terms will be shown to the applicant. Vendor "
|
1108 |
+
"must accept terms in order to register, if set."
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: ../classes/admin/settings/sf-options.php:305
|
1112 |
msgid "payments"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: ../classes/admin/settings/sf-options.php:316
|
1116 |
msgid "Payments"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: ../classes/admin/settings/sf-options.php:318
|
1120 |
+
msgid "PayPal Adaptive Payments Scheduling"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: ../classes/admin/settings/sf-options.php:319
|
1124 |
#, php-format
|
1125 |
msgid "Total commission currently due: %s. <a href=\"%s\">View details</a>."
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: ../classes/admin/settings/sf-options.php:320
|
1129 |
#, php-format
|
1130 |
msgid ""
|
1131 |
"Make sure you update your PayPal Adaptive Payments settings <a href=\"%s"
|
1132 |
+
"\">here</a>. <br><br>To instantly pay with Adaptive Payments you must "
|
1133 |
+
"activate the paypalap gateway in your Checkout settings. <br><a href="
|
1134 |
+
"\"https://www.wcvendors.com/kb/configuring-paypal-adaptive-payments/\" "
|
1135 |
+
"target=\"top\">PayPal AP Application Help</a>. <br><br>Another gateway that "
|
1136 |
+
"offers instant payments to vendors that also accepts credit cards directly "
|
1137 |
+
"on your checkout page is Stripe. <br><a href=\"https://www.wcvendors.com/"
|
1138 |
+
"product/stripe-commissions-gateway/\" target=\"top\">Stripe Commissions & "
|
1139 |
+
"Gateway plugin</a> is $49 and specifically coded for WC Vendors and <a href="
|
1140 |
+
"\"https://www.wcvendors.com/product/wc-vendors-pro/\" target=\"top\">WC "
|
1141 |
+
"Vendors Pro</a>."
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: ../classes/admin/settings/sf-options.php:324
|
1145 |
msgid "Instant pay"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: ../classes/admin/settings/sf-options.php:325
|
1149 |
+
msgid ""
|
1150 |
+
"Instantly pay vendors their commission when an order is made, and if a "
|
1151 |
+
"vendor has a valid PayPal email added on their Shop Settings page."
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: ../classes/admin/settings/sf-options.php:326
|
1155 |
msgid ""
|
1156 |
"For this to work, customers must checkout with the PayPal Adaptive Payments "
|
1157 |
"gateway. Using any other gateways will not pay vendors instantly"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: ../classes/admin/settings/sf-options.php:333
|
1161 |
msgid "Payment schedule"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: ../classes/admin/settings/sf-options.php:334
|
1165 |
msgid "Note: Schedule will only work if instant pay is unchecked"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: ../classes/admin/settings/sf-options.php:339
|
1169 |
msgid "Weekly"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: ../classes/admin/settings/sf-options.php:340
|
1173 |
msgid "Biweekly"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: ../classes/admin/settings/sf-options.php:341
|
1177 |
msgid "Monthly"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: ../classes/admin/settings/sf-options.php:342
|
1181 |
msgid "Manual"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: ../classes/admin/settings/sf-options.php:343
|
1185 |
msgid "Now"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: ../classes/admin/settings/sf-options.php:348
|
1189 |
msgid "Email notification"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: ../classes/admin/settings/sf-options.php:349
|
1193 |
msgid ""
|
1194 |
"Send the WooCommerce admin an email each time a payment has been made via "
|
1195 |
"the payment schedule options above"
|
1255 |
msgid "Vendor Dashboard"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: ../classes/front/class-vendor-shop.php:287
|
|
|
1259 |
msgid "Sold by"
|
1260 |
msgstr ""
|
1261 |
|
1335 |
msgstr ""
|
1336 |
|
1337 |
#: ../classes/front/signup/class-vendor-signup.php:54
|
|
|
1338 |
#, php-format
|
1339 |
+
msgid ""
|
1340 |
+
"I have read and accepted the <a target=\"top\" href=\"%s\">terms and "
|
1341 |
+
"conditions</a>"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
#: ../classes/front/signup/class-vendor-signup.php:88
|
1592 |
msgid "Your account is not setup as a vendor."
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: ../templates/dashboard/denied.php:33
|
1596 |
+
#, php-format
|
1597 |
+
msgid "I have read and accepted the <a href=\"%s\">terms and conditions</a>"
|
1598 |
+
msgstr ""
|
1599 |
+
|
1600 |
#: ../templates/dashboard/denied.php:53
|
1601 |
msgid "Submit"
|
1602 |
msgstr ""
|
1629 |
msgid "Links"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: ../templates/dashboard/orders.php:100
|
1633 |
msgid "Tracking"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
+
#: ../templates/dashboard/orders.php:176
|
1637 |
msgid "You have no orders during this period."
|
1638 |
msgstr ""
|
1639 |
|
readme.txt
CHANGED
@@ -5,8 +5,8 @@ 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.4.
|
9 |
-
Stable tag: 1.8.
|
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!
|
@@ -45,21 +45,23 @@ This plugin has been around since 2011 and remains still the #1 multi vendor plu
|
|
45 |
* Knowledgebase full of great articles on all the hooks, actions, filters, shortcodes, neat tricks, etc, @ <a href="https://www.wcvendors.com/knowledgebase/">www.wcvendors.com/knowledgebase/</A>
|
46 |
* ....and much more!
|
47 |
|
48 |
-
|
49 |
-
The following features are part of <a href="https://www.wcvendors.com/product/wc-vendors-pro/">WC Vendors Pro</a>
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
*
|
58 |
-
|
59 |
-
*
|
60 |
-
|
61 |
-
*
|
62 |
-
|
|
|
|
|
63 |
|
64 |
|
65 |
= Translations =
|
@@ -76,6 +78,7 @@ We currently ship WC Vendors free with the following language translations. If y
|
|
76 |
* Portuguese
|
77 |
* Persian
|
78 |
* French
|
|
|
79 |
|
80 |
== Installation ==
|
81 |
1. Download and install from WordPress.org.
|
@@ -113,6 +116,21 @@ No Upgrade required at this time.
|
|
113 |
|
114 |
== Changelog ==
|
115 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116 |
= Version 1.8.3 - 18th December 2015 =
|
117 |
|
118 |
* Fixed: Fatal Error on activation Merge pull request #235 from oleggen/patch-1
|
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.4.1
|
9 |
+
Stable tag: 1.8.4
|
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!
|
45 |
* Knowledgebase full of great articles on all the hooks, actions, filters, shortcodes, neat tricks, etc, @ <a href="https://www.wcvendors.com/knowledgebase/">www.wcvendors.com/knowledgebase/</A>
|
46 |
* ....and much more!
|
47 |
|
48 |
+
= WC Vendors Pro =
|
49 |
+
* The following features are part of <a href="https://www.wcvendors.com/product/wc-vendors-pro/">WC Vendors Pro</a>
|
50 |
+
* <strong>Pro Dashboard</strong> making your vendors sales reports a piece of cake</li>
|
51 |
+
* <strong>Fully featured front-end product add/edit capabilities</strong></li>
|
52 |
+
* <strong>eBay style feedback</strong> system for Vendor Ratings</li>
|
53 |
+
* <strong>Shipment Tracking</strong> for Vendors to enter tracking numbers</li>
|
54 |
+
* <strong>Vendor Shipping</strong> so vendors can enter flat rates for national/shipping, or country/state table rate shipping and receive the shipping fees from each sale.
|
55 |
+
* <strong>Multiple commission types</strong> such as percentage, percentage + fee, fixed fee, and even fixed fee + fee.</li>
|
56 |
+
* <strong>Vendor-Only coupons</strong> that vendors can create to make their own coupons for only their products</li>
|
57 |
+
* <strong>Vendor Stores</strong> post types, which give Vendors their own true actual store</li>
|
58 |
+
* Vendor <strong>store banners, avatars/icons</strong> and extra information fully customizable</li>
|
59 |
+
* <strong>Social module</strong> for adding facebook/twitter/google+ and many more</li>
|
60 |
+
* Extended <strong>Order Notes</strong></li>
|
61 |
+
* <strong>Insanely customizable template system</strong> to configure, tweak and style your store and dashboard any way you see fit.</li>
|
62 |
+
* MUCH MORE TO COME including <strong>WooThemes Bookings</strong> support, <strong>Variable Product</strong> support, integration with even more Woo plugins, and good features that you, the customer, ask us to code! <strong>Pro will always be continually updated with new features</strong>, just as you have grown to expect from WC Vendors Free</li>
|
63 |
+
* <strong>INSANELY FAST SUPPORT</strong> on our <a href="https://www.wcvendors.com/help/forum/wc-vendors-pro-support/">Pro Help Forum</a></li>
|
64 |
+
* There's more features to Pro than listed here!
|
65 |
|
66 |
|
67 |
= Translations =
|
78 |
* Portuguese
|
79 |
* Persian
|
80 |
* French
|
81 |
+
* ...and more
|
82 |
|
83 |
== Installation ==
|
84 |
1. Download and install from WordPress.org.
|
116 |
|
117 |
== Changelog ==
|
118 |
|
119 |
+
= Version 1.8.4 - 25th January 2016 =
|
120 |
+
|
121 |
+
* Added: Removed fields from users that aren't vendors
|
122 |
+
* Added: actions to hook into approve/deny vendor
|
123 |
+
* Added: Ability to integrate with any order status for emails #216
|
124 |
+
* Added: Terms & Conditions Opens in New Tab #246
|
125 |
+
* Updated: Added trigger for on-hold to processing/completed for Notify Vendor Email #238
|
126 |
+
* Updated: Settings page helper text and clarifications
|
127 |
+
* Fixed: Sold by formatting issue #248
|
128 |
+
* Fixed: wp_redirect caches with W3 Total Cache #237
|
129 |
+
* Fixed: Bug in single page settings generator
|
130 |
+
* Fixed: Category title missing bug #213
|
131 |
+
* Fixed: Undefined index for non vendor users
|
132 |
+
* Merge: pull request #247 from archonic/hotfix/oauth-class-exists
|
133 |
+
|
134 |
= Version 1.8.3 - 18th December 2015 =
|
135 |
|
136 |
* Fixed: Fatal Error on activation Merge pull request #235 from oleggen/patch-1
|