Dokan – Best WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy - Version 3.0.8

Version Description

Download this release

Release Info

Developer tareq1988
Plugin Icon wp plugin Dokan – Best WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy
Version 3.0.8
Comparing to
See all releases

Code changes from version 3.0.7 to 3.0.8

dokan.php CHANGED
@@ -3,12 +3,12 @@
3
  Plugin Name: Dokan
4
  Plugin URI: https://wordpress.org/plugins/dokan-lite/
5
  Description: An e-commerce marketplace plugin for WordPress. Powered by WooCommerce and weDevs.
6
- Version: 3.0.7
7
  Author: weDevs
8
  Author URI: https://wedevs.com/
9
  Text Domain: dokan-lite
10
  WC requires at least: 3.0
11
- WC tested up to: 4.3.1
12
  Domain Path: /languages/
13
  License: GPL2
14
  */
@@ -54,7 +54,7 @@ final class WeDevs_Dokan {
54
  *
55
  * @var string
56
  */
57
- public $version = '3.0.7';
58
 
59
  /**
60
  * Instance of self
3
  Plugin Name: Dokan
4
  Plugin URI: https://wordpress.org/plugins/dokan-lite/
5
  Description: An e-commerce marketplace plugin for WordPress. Powered by WooCommerce and weDevs.
6
+ Version: 3.0.8
7
  Author: weDevs
8
  Author URI: https://wedevs.com/
9
  Text Domain: dokan-lite
10
  WC requires at least: 3.0
11
+ WC tested up to: 4.3.2
12
  Domain Path: /languages/
13
  License: GPL2
14
  */
54
  *
55
  * @var string
56
  */
57
+ public $version = '3.0.8';
58
 
59
  /**
60
  * Instance of self
includes/Admin/Hooks.php CHANGED
@@ -109,7 +109,7 @@ class Hooks {
109
  *
110
  * @global type $post
111
  * @global type $woocommerce
112
- * @global WC_Order $the_order
113
  *
114
  * @param type $col
115
  *
@@ -119,7 +119,7 @@ class Hooks {
119
  global $post, $the_order;
120
 
121
  if ( empty( $the_order ) || $the_order->get_id() != $post->ID ) {
122
- $the_order = new WC_Order( $post->ID );
123
  }
124
 
125
  if ( ! current_user_can( 'manage_woocommerce' ) ) {
109
  *
110
  * @global type $post
111
  * @global type $woocommerce
112
+ * @global \WC_Order $the_order
113
  *
114
  * @param type $col
115
  *
119
  global $post, $the_order;
120
 
121
  if ( empty( $the_order ) || $the_order->get_id() != $post->ID ) {
122
+ $the_order = new \WC_Order( $post->ID );
123
  }
124
 
125
  if ( ! current_user_can( 'manage_woocommerce' ) ) {
includes/Assets.php CHANGED
@@ -255,6 +255,7 @@ class Assets {
255
  $scripts = array(
256
  'dokan-i18n-jed' => array(
257
  'src' => $asset_url . '/vendors/i18n/jed.js',
 
258
  ),
259
  'dokan-accounting' => array(
260
  'src' => WC()->plugin_url() . '/assets/js/accounting/accounting.min.js',
@@ -363,7 +364,7 @@ class Assets {
363
  ),
364
  'dokan-login-form-popup' => array(
365
  'src' => $asset_url . '/js/login-form-popup.js',
366
- 'deps' => array( 'dokan-popup' ),
367
  'version' => filemtime( $asset_path . '/js/login-form-popup.js' ),
368
  )
369
  );
@@ -425,7 +426,7 @@ class Assets {
425
 
426
  $localize_data = array_merge( $localize_script, $vue_localize_script );
427
 
428
- wp_localize_script( 'jquery', 'dokan', $localize_data );
429
 
430
  // load only in dokan dashboard and product edit page
431
  if ( ( dokan_is_seller_dashboard() || ( get_query_var( 'edit' ) && is_singular( 'product' ) ) ) || apply_filters( 'dokan_forced_load_scripts', false ) ) {
255
  $scripts = array(
256
  'dokan-i18n-jed' => array(
257
  'src' => $asset_url . '/vendors/i18n/jed.js',
258
+ 'deps' => array( 'jquery' ),
259
  ),
260
  'dokan-accounting' => array(
261
  'src' => WC()->plugin_url() . '/assets/js/accounting/accounting.min.js',
364
  ),
365
  'dokan-login-form-popup' => array(
366
  'src' => $asset_url . '/js/login-form-popup.js',
367
+ 'deps' => array( 'dokan-popup', 'dokan-i18n-jed' ),
368
  'version' => filemtime( $asset_path . '/js/login-form-popup.js' ),
369
  )
370
  );
426
 
427
  $localize_data = array_merge( $localize_script, $vue_localize_script );
428
 
429
+ wp_localize_script( 'dokan-i18n-jed', 'dokan', $localize_data );
430
 
431
  // load only in dokan dashboard and product edit page
432
  if ( ( dokan_is_seller_dashboard() || ( get_query_var( 'edit' ) && is_singular( 'product' ) ) ) || apply_filters( 'dokan_forced_load_scripts', false ) ) {
languages/dokan-lite.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the GPL2.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Dokan 3.0.7\n"
6
  "Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
7
- "POT-Creation-Date: 2020-07-23 02:40:23+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -910,13 +910,13 @@ msgid "We'll use %1$s for product weight and %2$s for product dimensions."
910
  msgstr ""
911
 
912
  #: includes/Admin/UserProfile.php:38 includes/Ajax.php:139
913
- #: includes/Assets.php:398 src/admin/pages/VendorAccountFields.vue:279
914
  #: src/admin/pages/VendorAccountFields.vue:311
915
  #: src/admin/pages/VendorAccountFields.vue:343
916
  msgid "Available"
917
  msgstr ""
918
 
919
- #: includes/Admin/UserProfile.php:39 includes/Assets.php:399
920
  #: src/admin/pages/VendorAccountFields.vue:287
921
  #: src/admin/pages/VendorAccountFields.vue:319
922
  msgid "Not Available"
@@ -1202,292 +1202,292 @@ msgstr ""
1202
  msgid "id param is required"
1203
  msgstr ""
1204
 
1205
- #: includes/Assets.php:401
1206
  msgid "Are you sure?"
1207
  msgstr ""
1208
 
1209
- #: includes/Assets.php:402
1210
  msgid "Something went wrong. Please try again."
1211
  msgstr ""
1212
 
1213
- #: includes/Assets.php:477
1214
  msgid "This field is required"
1215
  msgstr ""
1216
 
1217
- #: includes/Assets.php:478
1218
  msgid "Please fix this field."
1219
  msgstr ""
1220
 
1221
- #: includes/Assets.php:479
1222
  msgid "Please enter a valid email address."
1223
  msgstr ""
1224
 
1225
- #: includes/Assets.php:480
1226
  msgid "Please enter a valid URL."
1227
  msgstr ""
1228
 
1229
- #: includes/Assets.php:481
1230
  msgid "Please enter a valid date."
1231
  msgstr ""
1232
 
1233
- #: includes/Assets.php:482
1234
  msgid "Please enter a valid date (ISO)."
1235
  msgstr ""
1236
 
1237
- #: includes/Assets.php:483
1238
  msgid "Please enter a valid number."
1239
  msgstr ""
1240
 
1241
- #: includes/Assets.php:484
1242
  msgid "Please enter only digits."
1243
  msgstr ""
1244
 
1245
- #: includes/Assets.php:485
1246
  msgid "Please enter a valid credit card number."
1247
  msgstr ""
1248
 
1249
- #: includes/Assets.php:486
1250
  msgid "Please enter the same value again."
1251
  msgstr ""
1252
 
1253
- #: includes/Assets.php:487
1254
  msgid "Please enter no more than {0} characters."
1255
  msgstr ""
1256
 
1257
- #: includes/Assets.php:488
1258
  msgid "Please enter at least {0} characters."
1259
  msgstr ""
1260
 
1261
- #: includes/Assets.php:489
1262
  msgid "Please enter a value between {0} and {1} characters long."
1263
  msgstr ""
1264
 
1265
- #: includes/Assets.php:490
1266
  msgid "Please enter a value between {0} and {1}."
1267
  msgstr ""
1268
 
1269
- #: includes/Assets.php:491
1270
  msgid "Please enter a value less than or equal to {0}."
1271
  msgstr ""
1272
 
1273
- #: includes/Assets.php:492
1274
  msgid "Please enter a value greater than or equal to {0}."
1275
  msgstr ""
1276
 
1277
- #: includes/Assets.php:612
1278
  msgid "Upload featured image"
1279
  msgstr ""
1280
 
1281
- #: includes/Assets.php:613
1282
  msgid "Choose a file"
1283
  msgstr ""
1284
 
1285
- #: includes/Assets.php:614
1286
  msgid "Add Images to Product Gallery"
1287
  msgstr ""
1288
 
1289
- #: includes/Assets.php:615
1290
  msgid "Set featured image"
1291
  msgstr ""
1292
 
1293
- #: includes/Assets.php:616 includes/woo-views/html-product-download.php:8
1294
  msgid "Insert file URL"
1295
  msgstr ""
1296
 
1297
- #: includes/Assets.php:617
1298
  msgid "Add to gallery"
1299
  msgstr ""
1300
 
1301
- #: includes/Assets.php:618
1302
  msgid "Sorry, this attribute option already exists, Try a different one."
1303
  msgstr ""
1304
 
1305
- #: includes/Assets.php:619
1306
  msgid ""
1307
  "Warning! This product will not have any variations if this option is not "
1308
  "checked."
1309
  msgstr ""
1310
 
1311
- #: includes/Assets.php:620
1312
  msgid "Enter a name for the new attribute term:"
1313
  msgstr ""
1314
 
1315
- #: includes/Assets.php:621
1316
  msgid "Remove this attribute?"
1317
  msgstr ""
1318
 
1319
- #: includes/Assets.php:629
1320
  msgid ""
1321
  "Are you sure you want to link all variations? This will create a new "
1322
  "variation for each and every possible combination of variation attributes "
1323
  "(max %d per run)."
1324
  msgstr ""
1325
 
1326
- #: includes/Assets.php:630
1327
  msgid "Enter a value"
1328
  msgstr ""
1329
 
1330
- #: includes/Assets.php:631
1331
  msgid "Variation menu order (determines position in the list of variations)"
1332
  msgstr ""
1333
 
1334
- #: includes/Assets.php:632
1335
  msgid "Enter a value (fixed or %)"
1336
  msgstr ""
1337
 
1338
- #: includes/Assets.php:633
1339
  msgid "Are you sure you want to delete all variations? This cannot be undone."
1340
  msgstr ""
1341
 
1342
- #: includes/Assets.php:634
1343
  msgid "Last warning, are you sure?"
1344
  msgstr ""
1345
 
1346
- #: includes/Assets.php:635
1347
  msgid "Choose an image"
1348
  msgstr ""
1349
 
1350
- #: includes/Assets.php:636
1351
  msgid "Set variation image"
1352
  msgstr ""
1353
 
1354
- #: includes/Assets.php:637
1355
  msgid "variation added"
1356
  msgstr ""
1357
 
1358
- #: includes/Assets.php:638
1359
  msgid "variations added"
1360
  msgstr ""
1361
 
1362
- #: includes/Assets.php:639
1363
  msgid "No variations added"
1364
  msgstr ""
1365
 
1366
- #: includes/Assets.php:640
1367
  msgid "Are you sure you want to remove this variation?"
1368
  msgstr ""
1369
 
1370
- #: includes/Assets.php:641
1371
  msgid "Sale start date (YYYY-MM-DD format or leave blank)"
1372
  msgstr ""
1373
 
1374
- #: includes/Assets.php:642
1375
  msgid "Sale end date (YYYY-MM-DD format or leave blank)"
1376
  msgstr ""
1377
 
1378
- #: includes/Assets.php:643
1379
  msgid "Save changes before changing page?"
1380
  msgstr ""
1381
 
1382
- #: includes/Assets.php:644
1383
  msgid "%qty% variation"
1384
  msgstr ""
1385
 
1386
- #: includes/Assets.php:645
1387
  msgid "%qty% variations"
1388
  msgstr ""
1389
 
1390
- #: includes/Assets.php:646
1391
  msgid "No Result Found"
1392
  msgstr ""
1393
 
1394
- #: includes/Assets.php:647
1395
  msgid "Please insert value less than the regular price!"
1396
  msgstr ""
1397
 
1398
- #: includes/Assets.php:649 includes/Assets.php:807
1399
  #. translators: %s: decimal
1400
  msgid "Please enter with one decimal point (%s) without thousand separators."
1401
  msgstr ""
1402
 
1403
- #: includes/Assets.php:651 includes/Assets.php:809
1404
  #. translators: %s: price decimal separator
1405
  msgid ""
1406
  "Please enter with one monetary decimal point (%s) without thousand "
1407
  "separators and currency symbols."
1408
  msgstr ""
1409
 
1410
- #: includes/Assets.php:652 includes/Assets.php:810
1411
  msgid "Please enter in country code with two capital letters."
1412
  msgstr ""
1413
 
1414
- #: includes/Assets.php:653 includes/Assets.php:811
1415
  msgid "Please enter in a value less than the regular price."
1416
  msgstr ""
1417
 
1418
- #: includes/Assets.php:654 includes/Assets.php:812
1419
  msgid ""
1420
  "This product has produced sales and may be linked to existing orders. Are "
1421
  "you sure you want to delete it?"
1422
  msgstr ""
1423
 
1424
- #: includes/Assets.php:655 includes/Assets.php:813
1425
  msgid ""
1426
  "This action cannot be reversed. Are you sure you wish to erase personal "
1427
  "data from the selected orders?"
1428
  msgstr ""
1429
 
1430
- #: includes/Assets.php:660
1431
  msgid "Select and Crop"
1432
  msgstr ""
1433
 
1434
- #: includes/Assets.php:661
1435
  msgid "Choose Image"
1436
  msgstr ""
1437
 
1438
- #: includes/Assets.php:662
1439
  msgid "Product title is required"
1440
  msgstr ""
1441
 
1442
- #: includes/Assets.php:663
1443
  msgid "Product category is required"
1444
  msgstr ""
1445
 
1446
- #: includes/Assets.php:666
1447
  msgid "One result is available, press enter to select it."
1448
  msgstr ""
1449
 
1450
- #: includes/Assets.php:667
1451
  msgid "%qty% results are available, use up and down arrow keys to navigate."
1452
  msgstr ""
1453
 
1454
- #: includes/Assets.php:668
1455
  msgid "No matches found"
1456
  msgstr ""
1457
 
1458
- #: includes/Assets.php:669
1459
  msgid "Loading failed"
1460
  msgstr ""
1461
 
1462
- #: includes/Assets.php:670
1463
  msgid "Please enter 1 or more characters"
1464
  msgstr ""
1465
 
1466
- #: includes/Assets.php:671
1467
  msgid "Please enter %qty% or more characters"
1468
  msgstr ""
1469
 
1470
- #: includes/Assets.php:672
1471
  msgid "Please delete 1 character"
1472
  msgstr ""
1473
 
1474
- #: includes/Assets.php:673
1475
  msgid "Please delete %qty% characters"
1476
  msgstr ""
1477
 
1478
- #: includes/Assets.php:674
1479
  msgid "You can only select 1 item"
1480
  msgstr ""
1481
 
1482
- #: includes/Assets.php:675
1483
  msgid "You can only select %qty% items"
1484
  msgstr ""
1485
 
1486
- #: includes/Assets.php:676
1487
  msgid "Loading more results…"
1488
  msgstr ""
1489
 
1490
- #: includes/Assets.php:677
1491
  msgid "Searching…"
1492
  msgstr ""
1493
 
2
  # This file is distributed under the GPL2.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Dokan 3.0.8\n"
6
  "Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
7
+ "POT-Creation-Date: 2020-08-12 09:32:42+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
910
  msgstr ""
911
 
912
  #: includes/Admin/UserProfile.php:38 includes/Ajax.php:139
913
+ #: includes/Assets.php:399 src/admin/pages/VendorAccountFields.vue:279
914
  #: src/admin/pages/VendorAccountFields.vue:311
915
  #: src/admin/pages/VendorAccountFields.vue:343
916
  msgid "Available"
917
  msgstr ""
918
 
919
+ #: includes/Admin/UserProfile.php:39 includes/Assets.php:400
920
  #: src/admin/pages/VendorAccountFields.vue:287
921
  #: src/admin/pages/VendorAccountFields.vue:319
922
  msgid "Not Available"
1202
  msgid "id param is required"
1203
  msgstr ""
1204
 
1205
+ #: includes/Assets.php:402
1206
  msgid "Are you sure?"
1207
  msgstr ""
1208
 
1209
+ #: includes/Assets.php:403
1210
  msgid "Something went wrong. Please try again."
1211
  msgstr ""
1212
 
1213
+ #: includes/Assets.php:478
1214
  msgid "This field is required"
1215
  msgstr ""
1216
 
1217
+ #: includes/Assets.php:479
1218
  msgid "Please fix this field."
1219
  msgstr ""
1220
 
1221
+ #: includes/Assets.php:480
1222
  msgid "Please enter a valid email address."
1223
  msgstr ""
1224
 
1225
+ #: includes/Assets.php:481
1226
  msgid "Please enter a valid URL."
1227
  msgstr ""
1228
 
1229
+ #: includes/Assets.php:482
1230
  msgid "Please enter a valid date."
1231
  msgstr ""
1232
 
1233
+ #: includes/Assets.php:483
1234
  msgid "Please enter a valid date (ISO)."
1235
  msgstr ""
1236
 
1237
+ #: includes/Assets.php:484
1238
  msgid "Please enter a valid number."
1239
  msgstr ""
1240
 
1241
+ #: includes/Assets.php:485
1242
  msgid "Please enter only digits."
1243
  msgstr ""
1244
 
1245
+ #: includes/Assets.php:486
1246
  msgid "Please enter a valid credit card number."
1247
  msgstr ""
1248
 
1249
+ #: includes/Assets.php:487
1250
  msgid "Please enter the same value again."
1251
  msgstr ""
1252
 
1253
+ #: includes/Assets.php:488
1254
  msgid "Please enter no more than {0} characters."
1255
  msgstr ""
1256
 
1257
+ #: includes/Assets.php:489
1258
  msgid "Please enter at least {0} characters."
1259
  msgstr ""
1260
 
1261
+ #: includes/Assets.php:490
1262
  msgid "Please enter a value between {0} and {1} characters long."
1263
  msgstr ""
1264
 
1265
+ #: includes/Assets.php:491
1266
  msgid "Please enter a value between {0} and {1}."
1267
  msgstr ""
1268
 
1269
+ #: includes/Assets.php:492
1270
  msgid "Please enter a value less than or equal to {0}."
1271
  msgstr ""
1272
 
1273
+ #: includes/Assets.php:493
1274
  msgid "Please enter a value greater than or equal to {0}."
1275
  msgstr ""
1276
 
1277
+ #: includes/Assets.php:613
1278
  msgid "Upload featured image"
1279
  msgstr ""
1280
 
1281
+ #: includes/Assets.php:614
1282
  msgid "Choose a file"
1283
  msgstr ""
1284
 
1285
+ #: includes/Assets.php:615
1286
  msgid "Add Images to Product Gallery"
1287
  msgstr ""
1288
 
1289
+ #: includes/Assets.php:616
1290
  msgid "Set featured image"
1291
  msgstr ""
1292
 
1293
+ #: includes/Assets.php:617 includes/woo-views/html-product-download.php:8
1294
  msgid "Insert file URL"
1295
  msgstr ""
1296
 
1297
+ #: includes/Assets.php:618
1298
  msgid "Add to gallery"
1299
  msgstr ""
1300
 
1301
+ #: includes/Assets.php:619
1302
  msgid "Sorry, this attribute option already exists, Try a different one."
1303
  msgstr ""
1304
 
1305
+ #: includes/Assets.php:620
1306
  msgid ""
1307
  "Warning! This product will not have any variations if this option is not "
1308
  "checked."
1309
  msgstr ""
1310
 
1311
+ #: includes/Assets.php:621
1312
  msgid "Enter a name for the new attribute term:"
1313
  msgstr ""
1314
 
1315
+ #: includes/Assets.php:622
1316
  msgid "Remove this attribute?"
1317
  msgstr ""
1318
 
1319
+ #: includes/Assets.php:630
1320
  msgid ""
1321
  "Are you sure you want to link all variations? This will create a new "
1322
  "variation for each and every possible combination of variation attributes "
1323
  "(max %d per run)."
1324
  msgstr ""
1325
 
1326
+ #: includes/Assets.php:631
1327
  msgid "Enter a value"
1328
  msgstr ""
1329
 
1330
+ #: includes/Assets.php:632
1331
  msgid "Variation menu order (determines position in the list of variations)"
1332
  msgstr ""
1333
 
1334
+ #: includes/Assets.php:633
1335
  msgid "Enter a value (fixed or %)"
1336
  msgstr ""
1337
 
1338
+ #: includes/Assets.php:634
1339
  msgid "Are you sure you want to delete all variations? This cannot be undone."
1340
  msgstr ""
1341
 
1342
+ #: includes/Assets.php:635
1343
  msgid "Last warning, are you sure?"
1344
  msgstr ""
1345
 
1346
+ #: includes/Assets.php:636
1347
  msgid "Choose an image"
1348
  msgstr ""
1349
 
1350
+ #: includes/Assets.php:637
1351
  msgid "Set variation image"
1352
  msgstr ""
1353
 
1354
+ #: includes/Assets.php:638
1355
  msgid "variation added"
1356
  msgstr ""
1357
 
1358
+ #: includes/Assets.php:639
1359
  msgid "variations added"
1360
  msgstr ""
1361
 
1362
+ #: includes/Assets.php:640
1363
  msgid "No variations added"
1364
  msgstr ""
1365
 
1366
+ #: includes/Assets.php:641
1367
  msgid "Are you sure you want to remove this variation?"
1368
  msgstr ""
1369
 
1370
+ #: includes/Assets.php:642
1371
  msgid "Sale start date (YYYY-MM-DD format or leave blank)"
1372
  msgstr ""
1373
 
1374
+ #: includes/Assets.php:643
1375
  msgid "Sale end date (YYYY-MM-DD format or leave blank)"
1376
  msgstr ""
1377
 
1378
+ #: includes/Assets.php:644
1379
  msgid "Save changes before changing page?"
1380
  msgstr ""
1381
 
1382
+ #: includes/Assets.php:645
1383
  msgid "%qty% variation"
1384
  msgstr ""
1385
 
1386
+ #: includes/Assets.php:646
1387
  msgid "%qty% variations"
1388
  msgstr ""
1389
 
1390
+ #: includes/Assets.php:647
1391
  msgid "No Result Found"
1392
  msgstr ""
1393
 
1394
+ #: includes/Assets.php:648
1395
  msgid "Please insert value less than the regular price!"
1396
  msgstr ""
1397
 
1398
+ #: includes/Assets.php:650 includes/Assets.php:808
1399
  #. translators: %s: decimal
1400
  msgid "Please enter with one decimal point (%s) without thousand separators."
1401
  msgstr ""
1402
 
1403
+ #: includes/Assets.php:652 includes/Assets.php:810
1404
  #. translators: %s: price decimal separator
1405
  msgid ""
1406
  "Please enter with one monetary decimal point (%s) without thousand "
1407
  "separators and currency symbols."
1408
  msgstr ""
1409
 
1410
+ #: includes/Assets.php:653 includes/Assets.php:811
1411
  msgid "Please enter in country code with two capital letters."
1412
  msgstr ""
1413
 
1414
+ #: includes/Assets.php:654 includes/Assets.php:812
1415
  msgid "Please enter in a value less than the regular price."
1416
  msgstr ""
1417
 
1418
+ #: includes/Assets.php:655 includes/Assets.php:813
1419
  msgid ""
1420
  "This product has produced sales and may be linked to existing orders. Are "
1421
  "you sure you want to delete it?"
1422
  msgstr ""
1423
 
1424
+ #: includes/Assets.php:656 includes/Assets.php:814
1425
  msgid ""
1426
  "This action cannot be reversed. Are you sure you wish to erase personal "
1427
  "data from the selected orders?"
1428
  msgstr ""
1429
 
1430
+ #: includes/Assets.php:661
1431
  msgid "Select and Crop"
1432
  msgstr ""
1433
 
1434
+ #: includes/Assets.php:662
1435
  msgid "Choose Image"
1436
  msgstr ""
1437
 
1438
+ #: includes/Assets.php:663
1439
  msgid "Product title is required"
1440
  msgstr ""
1441
 
1442
+ #: includes/Assets.php:664
1443
  msgid "Product category is required"
1444
  msgstr ""
1445
 
1446
+ #: includes/Assets.php:667
1447
  msgid "One result is available, press enter to select it."
1448
  msgstr ""
1449
 
1450
+ #: includes/Assets.php:668
1451
  msgid "%qty% results are available, use up and down arrow keys to navigate."
1452
  msgstr ""
1453
 
1454
+ #: includes/Assets.php:669
1455
  msgid "No matches found"
1456
  msgstr ""
1457
 
1458
+ #: includes/Assets.php:670
1459
  msgid "Loading failed"
1460
  msgstr ""
1461
 
1462
+ #: includes/Assets.php:671
1463
  msgid "Please enter 1 or more characters"
1464
  msgstr ""
1465
 
1466
+ #: includes/Assets.php:672
1467
  msgid "Please enter %qty% or more characters"
1468
  msgstr ""
1469
 
1470
+ #: includes/Assets.php:673
1471
  msgid "Please delete 1 character"
1472
  msgstr ""
1473
 
1474
+ #: includes/Assets.php:674
1475
  msgid "Please delete %qty% characters"
1476
  msgstr ""
1477
 
1478
+ #: includes/Assets.php:675
1479
  msgid "You can only select 1 item"
1480
  msgstr ""
1481
 
1482
+ #: includes/Assets.php:676
1483
  msgid "You can only select %qty% items"
1484
  msgstr ""
1485
 
1486
+ #: includes/Assets.php:677
1487
  msgid "Loading more results…"
1488
  msgstr ""
1489
 
1490
+ #: includes/Assets.php:678
1491
  msgid "Searching…"
1492
  msgstr ""
1493
 
package.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "name": "dokan",
3
- "version": "3.0.7",
4
  "description": "A WordPress marketplace plugin",
5
  "author": "weDevs",
6
  "license": "GPL",
1
  {
2
  "name": "dokan",
3
+ "version": "3.0.8",
4
  "description": "A WordPress marketplace plugin",
5
  "author": "weDevs",
6
  "license": "GPL",
readme.txt CHANGED
@@ -3,11 +3,11 @@ Contributors: tareq1988, wedevs, nizamuddinbabu
3
  Donate Link: http://tareq.co/donate/
4
  Tags: WooCommerce multivendor marketplace, multi vendor marketplace, multi seller store, product vendors, woocommerce vendor, commission rate, e-commerce, ebay, ecommerce, yith, yithemes
5
  Requires at least: 4.4
6
- Tested up to: 5.4.2
7
  WC requires at least: 3.0
8
- WC tested up to: 4.3.1
9
  Requires PHP: 5.6
10
- Stable tag: 3.0.7
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
 
@@ -291,6 +291,11 @@ A. Just install and activate the PRO version without deleting the free plugin. A
291
 
292
  == Changelog ==
293
 
 
 
 
 
 
294
  = v3.0.7 (July 23, 2020) =
295
 
296
  - **Fix:** Showing fatal error for user switching
3
  Donate Link: http://tareq.co/donate/
4
  Tags: WooCommerce multivendor marketplace, multi vendor marketplace, multi seller store, product vendors, woocommerce vendor, commission rate, e-commerce, ebay, ecommerce, yith, yithemes
5
  Requires at least: 4.4
6
+ Tested up to: 5.5
7
  WC requires at least: 3.0
8
+ WC tested up to: 4.3.2
9
  Requires PHP: 5.6
10
+ Stable tag: 3.0.8
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
 
291
 
292
  == Changelog ==
293
 
294
+ = v3.0.8 (August 12, 2020) =
295
+
296
+ - **Fix:** WordPress v5.5 compatibility issue fixed
297
+ - **Fix:** Namespacing issues on class declaration
298
+
299
  = v3.0.7 (July 23, 2020) =
300
 
301
  - **Fix:** Showing fatal error for user switching
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit81025a775b3ffe59fabb3a75969d3844::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit3983dedfaf74118befcda2043735123d::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit81025a775b3ffe59fabb3a75969d3844
6
  {
7
  private static $loader;
8
 
@@ -22,15 +22,15 @@ class ComposerAutoloaderInit81025a775b3ffe59fabb3a75969d3844
22
  return self::$loader;
23
  }
24
 
25
- spl_autoload_register(array('ComposerAutoloaderInit81025a775b3ffe59fabb3a75969d3844', 'loadClassLoader'), true, true);
26
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
27
- spl_autoload_unregister(array('ComposerAutoloaderInit81025a775b3ffe59fabb3a75969d3844', 'loadClassLoader'));
28
 
29
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
30
  if ($useStaticLoader) {
31
  require_once __DIR__ . '/autoload_static.php';
32
 
33
- call_user_func(\Composer\Autoload\ComposerStaticInit81025a775b3ffe59fabb3a75969d3844::getInitializer($loader));
34
  } else {
35
  $map = require __DIR__ . '/autoload_namespaces.php';
36
  foreach ($map as $namespace => $path) {
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit3983dedfaf74118befcda2043735123d
6
  {
7
  private static $loader;
8
 
22
  return self::$loader;
23
  }
24
 
25
+ spl_autoload_register(array('ComposerAutoloaderInit3983dedfaf74118befcda2043735123d', 'loadClassLoader'), true, true);
26
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
27
+ spl_autoload_unregister(array('ComposerAutoloaderInit3983dedfaf74118befcda2043735123d', 'loadClassLoader'));
28
 
29
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
30
  if ($useStaticLoader) {
31
  require_once __DIR__ . '/autoload_static.php';
32
 
33
+ call_user_func(\Composer\Autoload\ComposerStaticInit3983dedfaf74118befcda2043735123d::getInitializer($loader));
34
  } else {
35
  $map = require __DIR__ . '/autoload_namespaces.php';
36
  foreach ($map as $namespace => $path) {
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInit81025a775b3ffe59fabb3a75969d3844
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'W' =>
@@ -165,9 +165,9 @@ class ComposerStaticInit81025a775b3ffe59fabb3a75969d3844
165
  public static function getInitializer(ClassLoader $loader)
166
  {
167
  return \Closure::bind(function () use ($loader) {
168
- $loader->prefixLengthsPsr4 = ComposerStaticInit81025a775b3ffe59fabb3a75969d3844::$prefixLengthsPsr4;
169
- $loader->prefixDirsPsr4 = ComposerStaticInit81025a775b3ffe59fabb3a75969d3844::$prefixDirsPsr4;
170
- $loader->classMap = ComposerStaticInit81025a775b3ffe59fabb3a75969d3844::$classMap;
171
 
172
  }, null, ClassLoader::class);
173
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit3983dedfaf74118befcda2043735123d
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'W' =>
165
  public static function getInitializer(ClassLoader $loader)
166
  {
167
  return \Closure::bind(function () use ($loader) {
168
+ $loader->prefixLengthsPsr4 = ComposerStaticInit3983dedfaf74118befcda2043735123d::$prefixLengthsPsr4;
169
+ $loader->prefixDirsPsr4 = ComposerStaticInit3983dedfaf74118befcda2043735123d::$prefixDirsPsr4;
170
+ $loader->classMap = ComposerStaticInit3983dedfaf74118befcda2043735123d::$classMap;
171
 
172
  }, null, ClassLoader::class);
173
  }