forked from getdokan/dokan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
1522 lines (1151 loc) · 106 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
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
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
=== Dokan - Powerful WooCommerce Multivendor Marketplace Solution - Build Your Own Amazon, eBay, Etsy ===
Contributors: tareq1988, wedevs, nizamuddinbabu
Donate Link: http://tareq.co/donate/
Tags: WooCommerce multivendor marketplace, multivendor marketplace, multivendor, multi seller, multi vendor, WooCommerce marketplace, WooCommerce product vendors
Requires at least: 6.4
Tested up to: 6.5.5
WC requires at least: 8.0.0
WC tested up to: 9.0.2
Requires PHP: 7.4
Stable tag: 3.11.4
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Transform your WooCommerce site into a multivendor marketplace with Dokan - a powerful and advanced WooCommerce multivendor marketplace solution
== Description ==
= POWERFUL MULTIVENDOR MARKETPLACE PLUGIN FOR WORDPRESS – POWERED BY WOOCOMMERCE =
[Dokan](https://dokan.co/wordpress/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) is the ultimate frontend multivendor marketplace plugin for WordPress, powered by WooCommerce. It helps you build your own multivendor marketplace similar to Amazon, Shopify, eBay, and Magento in under 30 minutes.
Moreover, Plus, with Dokan, you don't need any coding skills to create a thriving WooCommerce multivendor marketplace. Trusted by over 60,000 entrepreneurs globally for more than a decade, Dokan makes multivendor marketplace setup effortless and accessible to all.
Dokan is the fastest way to launch an eCommerce business and earn through commissions for products ranging from digital and physical to variable products.
Hear what reputed WordPress influencer and online business strategist, Darrel Wilson, has to say about Dokan Multivendor Marketplace.
[youtube https://www.youtube.com/watch?v=nDAxNypVxdw]
👉 **Official Free Demo Link:** Try out multiple [Dokan Demo sites](https://dokan.co/wordpress/demo/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org)
👉 **Learn More About Dokan (PRO):** [All The Features of Dokan](https://dokan.co/wordpress/features/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org)
👉 Check out the **comprehensive customer [Dokan Mobile App](https://dokan.co/wordpress/dokan-mobile-app/)** to enhance your Dokan marketplace shopping experience.
👉 **Easy Delivery Management with [Dokan Delivery Driver App](https://dokan.co/wordpress/delivery-driver-app/)** (Pro) with real-time order tracking, live timeline updates, and an asynchronous system between admin, vendors, customers, and delivery drivers.
👉 **Confused about how to get started?** Read our blogs from [weDevs](https://wedevs.com/blog/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) and [Dokan](https://dokan.co/blog/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org)
Here is how you can build your multivendor marketplace with Dokan.
[youtube https://www.youtube.com/watch?v=_Vv5T7qqhoE]
= PLACES WHERE DOKAN HAS BEEN FEATURED =
🏆 [Dokan Multivendor Marketplace featured by Cloudways](https://www.cloudways.com/blog/dokan-woocommerce-marketplace-plugin-review/)
🏆 [Dokan for WooCommerce Multivendor Marketplace featured by Astra Themes](https://wpastra.com/guides-and-tutorials/create-online-marketplace/)
🏆 [Dokan wins the Best Plugin in the Temple Monster Award 2023 for WooCommerce through public voting](https://www.templatemonster.com/awards/category/woocommerce-plugins/)
🏆 [Dokan wins two prestigious awards with 99% user satisfaction](https://reviews.financesonline.com/p/dokan)
🏆 [How to Setup a WordPress Marketplace with Multiple Vendors](https://learnwoo.com/wordpress-marketplace/)
🏆 [How to create a Multi-Vendor Marketplace for WordPress using Dokan](https://youtu.be/_Vv5T7qqhoE)
🏆 [Dokan Theme Review: A Multi-Vendor Marketplace Theme for WordPress](https://wpmayor.com/dokan-theme-review-multi-vendor-marketplace-theme-wordpress/)
= DOKAN WAS FEATURED IN CAPTERRA WITH MULTIPLE POSITIVE REVIEWS =
👏 “Great Platform to start and grow your business with. Provides the ability to grow our startup to a global level with a low financial burden.”
👏 “Dokan is a product with a huge potential. And has evolved during the last years. We have implemented a stable marketplace environment serving hundreds of satisfied customers using this tool.”
👏 “Dokan is the most complete multivendor plugin/product one can ever found.”
👏 “I have been using Dokan for 3 years. Overall experiences with the software are awesome!”
👏 “Best investment we made last year.”
👏 “[Excellent product. Ease of use. Saved hundreds of work hours with lots of additional benefits] (https://www.capterra.com/p/168004/Dokan-Multivendor-Marketplace/reviews/543139/)”
= SUCCESS STORIES WE ARE PROUD TO BE A PART OF =
✌️ “[Dokan is a solution for us to provide a fully automized shop-in-shop-system with a very helpful commission-calculation and reports to do all financial details with the vendors](https://wedevs.com/blog/173305/a-success-story-of-a-healthcare-marketplace/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org).” – Bernd Payer, Founder [JOSHi](https://www.joshi.at/)
✌️ “[The functionality delivers everything that you need to grow your marketplace](https://wedevs.com/blog/89525/dokan-customer-dream-multivendor-marketplace/).” – [Hawk and Peddle ](https://hawkandpeddle.co.uk/)
[youtube https://www.youtube.com/watch?v=4id-EwbfUko]
= HIGHLY USER-FRIENDLY FRONTEND INTERFACE =
To provide a comprehensive frontend experience, every vendor has a [personalized customizable dashboard](https://dokan.co/wordpress/features/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) on the store frontend. They can easily navigate and control every aspect of their marketplace from there. Backend access is restricted to only the admin, which sets Dokan apart from other marketplace plugins. However, all Dokan [modules](https://dokan.co/wordpress/modules/) are frontend compatible so that both the admin and vendors can enjoy the benefits and advanced features of Dokan.
Dokan (Pro) comes with a free, fully responsive eCommerce theme - [Dokani](https://dokan.co/wordpress/dokani-theme/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) with special widgets to ensure you can customize the theme however you like.
Dokan is also compatible with the [Otel theme](https://dokan.co/wordpress/otel-theme/), a customizable and fully responsive WordPress theme for any hotel booking management site.
= IT’S FAST AND EASY TO USE =
With Dokan, experience a smooth, fast setup process in under an hour and have your WooCommerce multivendor marketplace running within a day. It perfectly matches your expectations and is designed with intuitive practices from eCommerce leaders like WooCommerce and others.
= A RELIABLE GROWING PLATFORM & COMMUNITY =
We continuously update Dokan with reliable services for flawless operation, staying ahead of industry trends and introducing new features with each update.
See Our Official GitHub page: [Official Dokan GitHub](https://github.com/weDevsOfficial/dokan/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org)
= A SCALABLE MARKET =
Dokan Multivendor Marketplace plugin allows you to have an unlimited number of vendors on any marketplace, each with the ability to create an unlimited number of products. Create marketplaces that offer –
* Physical products
* Downloadable products
* Variable products
* Bookable products through the [Dokan WC Bookings Integration](https://dokan.co/wordpress/modules/woocommerce-booking-integration/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org)
* Auction products through the [Dokan Simple Auction Integration](https://dokan.co/wordpress/modules/dokan-simple-auctions/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org)
= EARN IN MULTIPLE WAYS =
Profit doesn’t only rely on sales. Dokan offers multiple ways to earn money, including vendor commissions and product-based commissions. You can also create subscription packs that allow you to charge for product uploads, product category selection, and time period restrictions.
= PUTS YOU IN CONTROL =
Dokan empowers admins with full control over marketplace operations, including product publishing, vendor registration, subscription renewal, and all other vendor activities.
In the [Pro Version](https://dokan.co/wordpress/pricing/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org), there are additional stunning features, updates, and scope for powerful modules to provide more admin power and control while improving the marketplace functionality.
= DYNAMIC SETTINGS FOR SHIPPING CONDITIONS =
Admin can extend flexibility to individual vendors to take control over their shipping methods based on various conditions, such as setting multiple rates, tracking shipments with available integrations, and much more.
* [Vendor Table Rate Shipping](https://dokan.co/wordpress/modules/table-rate-shipping/) (Pro) – Multi-vendor support on setting shipping rates based on location, price, weight, shipping class, or item count of the shipment.
* [Delivery Time](https://dokan.co/wordpress/modules/delivery-time/) (Pro) – Let customers choose the time and date they want their product delivered.
* [ShipStation](https://dokan.co/wordpress/modules/shipstation/) (Pro) – Enable vendors to import, manage, and ship orders hassle-free with the leading shipping application for online marketplaces.
* Your vendors will also be able to use [zone-wise shipping management](https://dokan.co/docs/wordpress/vendor-guide/dokan-zone-wise-shipping/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) (Pro).
= PLAYS NICELY WITH OTHER PLUGINS =
Dokan is compatible with 70+ plugins and 71+ themes, ensuring worry-free compatibility. Whether it's shipping, payment, or wallets, rest assured when building your global eCommerce business with Dokan.
➡️ [Check Out Dokan Compatible Plugins & Themes](https://dokan.co/wordpress/compatible-plugins/) ⬅️
= MORE FREEDOM TO CUSTOMIZE THE STORE =
Never get bored with the old-fashioned appearance of your store. Have full control over your store customization and give life to your imagination with Dokan integrations.
* [Elementor Customizer](https://dokan.co/wordpress/modules/elementor/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) (Pro): Customize vendor store pages effortlessly and access over 12 exclusive Dokan widgets, drag and drop them anywhere, and Save as many customized templates as you want.
= 🎯🎯 Dokan’s Superior Features for Your WooCommerce Marketplace 🎯🎯 =
**Marketplace with Independent Stores**
* Every seller gets their own store with a unique URL and branding.
* Beautiful storefront styles with contact details and widgets.
* [Store location map on the store front](https://dokan.co/wordpress/modules/geolocation/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) (Pro).
* [Single products can be offered by different merchants](https://dokan.co/wordpress/modules/single-product-multivendor/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) (Pro).
**Frontend Dashboard For Each Seller**
* Vendors can manage products, control orders from customers, and make payment withdrawals right from the site frontend.
* WordPress backend and administrative settings can only be accessed by the admin.
**Earn From Each Sale**
* The admin can set commission rates based on a flat amount or a percentage of the sale value.
* Vendor commissions are automatically collected to reduce administrative burden.
* [Per vendor percentage override](https://dokan.co/docs/wordpress/tutorials/how-to-setup-dokan-vendor-commission/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) eases the manual condition of specially setting different commission settings for vendors. Create a global commission structure on the marketplace with this feature.
**Hassle Free Payments & Transactions**
* Utilize 100+ payment integrations of Dokan including GooglePay, ApplePay, Stripe Express, MANGOPAY, Razorpay.
* [Reverse Withdrawal](https://dokan.co/docs/wordpress/withdraw/dokan-reverse-withdrawal/) facilitates commission collection for admins in instances when it cannot be collected via the regular commission system, such as when vendors ship orders with **cash on delivery**.
* Automatic Payment Disbursement simplifies vendor commission calculations, splitting customer payments instantly based on marketplace settings.
**Simple Product Management**
* Create and manage your products from the frontend.
* [Create variable or downloadable products](https://wedevs.com/87025/types-of-products-you-can-create-using-woocommerce/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) (Pro).
* Vendors have the option to [manage product attributes](https://dokan.co/docs/wordpress/vendor-dashboard/products/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) (Pro).
* Vendors can manage downloadable [product permission, expiry date, and download limit](https://dokan.co/docs/wordpress/tutorials/how-to-create-a-digital-product/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) (Pro).
**Detailed Reports Of Your Marketplace (Pro)**
* Vendors can see their [sales report, generate statements and overview from the frontend](https://dokan.co/wordpress/modules/vendor-analytics/) (Vendor Analytics).
* Admins can [overview orders](https://dokan.co/docs/wordpress/vendor-dashboard/orders/) and filter by sale, date, top vendors, or top earners.
* Let Vendors easily migrate from other marketplaces to your Dokan marketplace using the [Export/Import feature](https://dokan.co/wordpress/modules/export-import/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) (Pro) without losing any product data, including stock value, SKU information, tags and other information.
* Admin has access to all customer reviews on the marketplace. The customer can leave [reviews for a product/vendor](https://dokan.co/wordpress/modules/dokan-vendor-review/) they are satisfied with. The vendor cannot change a review, promoting transparency.
**Vendors Discounts Creation & Management**
* Configure coupon expiration and restrictions.
* All product reviews are managed by vendors (with admin override), and make decisions on whether to display the review on their site.
* Vendors will be able to create diverse [coupons](https://dokan.co/docs/wordpress/vendor-dashboard/coupons-2/) by setting different rules based on usage limit, expiration date, excluding sale items while also specifying only certain products on which the coupons are valid on (Pro).
**💪 ADMINS CONTROL EVERY ASPECT OF THE MARKETPLACE**
* Admin can view and modify vendor store products.
* Admin can view a comprehensive [Admin Earning Report](https://dokan.co/docs/wordpress/earning-reports/) with data categorization by day, year, or vendors. Moreover, the admin can also view each vendor’s earning reports individually.
* Dokan Pro has an advanced support option for customers, allowing customers to directly interact with vendors and admin for product inquiry ([Product Enquiry module](https://dokan.co/wordpress/modules/product-enquiry/)).
* Dokan Pro has update and support option for the customer.
* Advanced settings for the admin -
* General Settings
* Admin can enable/disable the map on the store page.
* Admin can enable/disable the contact form on the store page.
* Admin can also enable/disable the store sidebar from theme.
* Selling Options
* Admin can manage new product status.
* Admin can set the order status for withdrawal.
* The admin can configure automatic withdrawal disbursement for vendor payments based on amount or time period.
* Admin can change the vendor store URL.
* Admin can also enable/disable the permission of review editing for the vendor.
* Widgets
* Best vendor widget.
* Featured vendor widget.
* Store contact widget.
* Store location widget.
* And much more.
➡️ [LEARN MARKETPLACE MANAGEMENT TIPS & TRICKS](https://dokan.co/docs/wordpress/tutorials/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) ⬅️
= 💥💥 EXTENDED FEATURES BY SIMPLY ENABLING A TOGGLE BUTTON 💥💥 =
Dokan comes with a number of advanced features & modules that boost your WooCommerce marketplace position, always keeping you one step ahead of the competition. Continuous innovations and features are brought with regular and timely releases. Check out the changelog [here](https://wedevs.com/docs/dokan/changelog/)
* [Stripe Express](https://dokan.co/wordpress/modules/stripe-express/?utm_medium=dokan-lite&utm_source=wordpress.org&utm_campaign=module)(Pro)
* [Minimum Maximum Order](https://dokan.co/wordpress/modules/minimum-maximum-order/?utm_medium=dokan-lite&utm_source=wordpress.org&utm_campaign=modules) (Pro)
* [Product Advertising](https://dokan.co/wordpress/modules/product-advertising/?utm_medium=dokan-lite&utm_source=wordpress.org&utm_campaign=modules) (Pro)
* [Product Subscription](https://dokan.co/wordpress/modules/product-subscription/?utm_medium=dokan-lite&utm_source=wordpress.org&utm_campaign=modules) (Pro)
* [Request for Quotation](https://dokan.co/wordpress/modules/request-for-quotation/?utm_medium=dokan-lite&utm_source=wordpress.org&utm_campaign=modules) (Pro)
* [Rank Math SEO](https://dokan.co/wordpress/modules/rank-math-seo/?utm_medium=dokan-lite&utm_source=wordpress.org&utm_campaign=modules) (Pro)
* [Dokan MANGOPAY Integration](https://dokan.co/wordpress/modules/dokan-mangopay-integration/?utm_medium=dokan-lite&utm_source=wordpress.org&utm_campaign=modules) (Pro)
* [Dokan Paypal Marketplace](https://dokan.co/wordpress/modules/dokan-paypal-marketplace/?utm_medium=dokan-lite&utm_source=wordpress.org&utm_campaign=modules) (Pro)
* [PDF Invoice](https://dokan.co/wordpress/modules/pdf-invoice-2/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org)
* [Product Duplicator](https://dokan.co/wordpress/modules/product-duplicator/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org)
* [Ajax Live Search](https://dokan.co/wordpress/modules/ajax-live-search/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) (Pro)
* [Geolocation](https://dokan.co/wordpress/modules/geolocation/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) (Pro)
* [Live Chat](https://dokan.co/wordpress/modules/live-chat/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) (Pro)
* [Seller Verification](https://dokan.co/wordpress/modules/seller-verification/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) (Pro)
* [Stripe Connect](https://dokan.co/wordpress/modules/stripe-connect/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) (Pro)
* [Wirecard(Moip)](https://dokan.co/wordpress/modules/moip/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) (Pro)
* [Subscriptions](https://dokan.co/wordpress/modules/subscriptions/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) (Pro)
* [Vendor Review](https://dokan.co/wordpress/modules/dokan-vendor-review/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) (Pro)
* [Vendor Staff Manager](https://dokan.co/wordpress/modules/vendor-staff-manager/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) (Pro)
* [Dokan WooCommerce Booking](https://dokan.co/wordpress/modules/woocommerce-booking-integration/) (Pro)
* [Dokan Simple Auctions](https://dokan.co/wordpress/modules/dokan-simple-auctions/) (Pro)
* [Report Abuse](https://dokan.co/wordpress/modules/report-abuse/) (Pro)
* [Follow Store](https://dokan.co/wordpress/modules/follow-store/) (Pro)
* [Razorpay Integration](https://dokan.co/wordpress/modules/razorpay/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) (Pro)
* [EU Compliance Fields](https://dokan.co/wordpress/modules/eu-compliance-fields/) (Pro)
* [Dokan Product Addon](https://dokan.co/wordpress/modules/product-addon/) (Pro)
* [Colour Scheme Customizer](https://dokan.co/wordpress/modules/color-scheme-customizer/) (Pro)
* [Product Enquiry](https://dokan.co/wordpress/modules/product-enquiry/) (Pro)
* [Return and Warranty Request](https://dokan.co/wordpress/modules/return-and-warranty-request/) (Pro)
* [Single Product Multivendor](https://dokan.co/wordpress/modules/single-product-multivendor/) (Pro)
* [Product Store Support](https://dokan.co/wordpress/modules/store-support/) (Pro)
* [Vendor Vacation](https://dokan.co/wordpress/modules/vendor-vacation/) (Pro)
* [Wholesale Module](https://dokan.co/wordpress/modules/wholesale/) (Pro)
* [Vendor Analytics](https://dokan.co/wordpress/modules/vendor-analytics/) (Pro)
* [WPML Integration](https://dokan.co/wordpress/modules/wpml-integration/)
* [WC Vendor Migrator](https://dokan.co/docs/wordpress/free-modules/wc-vendors-to-dokan-importer/)
* [Seller Badge](https://dokan.co/wordpress/modules/seller-badge/) (Pro)
* [Vendor Dashboard](https://dokan.co/wordpress/modules/vendor-dashboard/)
* [Dokan Delivery Driver App](https://dokan.co/wordpress/delivery-driver-app/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) (Pro)
[AND MANY MORE](https://dokan.co/wordpress/modules/?utm_campaign=dokan-wordpress-org-visitor&utm_medium=learn_more_about_dokan&utm_source=WordPress.org) ⏩
= WE KNOW WE ARE NOT PERFECT THAT’S WHY WE ARE IMPROVING EVERYDAY =
This could have bugs and lack some features. If you want to contribute to this project, you are more than welcome.
👨💻 [Please fork the repository from Github](https://github.com/weDevsOfficial/dokan) 👨💻
= Privacy Policy =
Dokan Lite uses [Appsero](https://appsero.com) SDK to collect some telemetry data upon user's confirmation. This helps us to troubleshoot problems faster & make product improvements.
Appsero SDK **does not gather any data by default.** The SDK only starts gathering basic telemetry data **when a user allows it via the admin notice**. We collect the data to ensure great user experience for all our users.
Integrating Appsero SDK **DOES NOT IMMEDIATELY** start gathering data, **without confirmation from users in any case.**
= Contribute =
This may have bugs and lack of many features. If you want to contribute on this project, you are more than welcome. Please fork the repository from [Github](https://github.com/weDevsOfficial/dokan).
= Author =
Brought to you by [Tareq Hasan](http://tareq.co) from [weDevs](http://wedevs.com)
== Installation ==
Extract the zip file and just drop the contents in the wp-content/plugins/ directory of your WordPress installation and then activate the Plugin from Plugins page.
== Frequently Asked Questions ==
= Q. Can I add a payment method? =
A. Just use any standard WooCommerce payment gateway.
= Q. How do withdrawals work? =
A. Right now, we offer PayPal, Bank and Skrill (pro) withdraw method for "Dokan". For PayPal withdraw, you can generate Mass Payment File to payout your sellers at once. Other methods are manual though.
= Q. Does Dokan integrate with BuddyPress? =
A. Not for the moment. We have plans to integrate with BuddyPress via an add-on in the near future.
= Q. Is Dokan responsive? =
A. Yes, Dokan is fully responsive. We take mobile first approach and it displays very well in mobile and tablet devices. We are using Twitter Bootstrap as a framework and it just works.
= Q. Does it supports variable products? =
A. The **Pro** version does! You can sell normal products, downloadable products, and variable products with your own attributes.
= Q. Can each vendor customize his store? =
A. Right now we have options for only changing the store banner page. We are working on a better customizable seller store page.
= Q. Will it be possible to take a cut or commission from the sales? =
A. Yes, that's how Dokan works. In every sales, you can cut a commission from a order. That's configurable from Dokan settings.
= Q. Can Dokan be used in a single seller mode? =
A. Obviously, you can use this on a single seller site to give them a nice front-end experience.
= Q. How to upgrade to the Pro version?
A. Just install and activate the PRO version without deleting the free plugin. All your data will be safe on the database and some extra features will be added. If you feel something may go wrong, please consult with our [support](https://dokan.co/contact/) staff first.
== Screenshots ==
1. Admin Dashboard
2. Withdraw requests from sellers
3. Settings → General
4. Settings → Selling Options
5. Settings → Withdraw Options
6. Settings → Page Settings
7. Settings → Appearance
8. Seller Dashboard in site frontend
9. Frontend → Products Listing
10. Frontend → Create a new Product
11. Frontend → Edit a product
12. Frontend → Orders Listing
13. Frontend → Orders → Details
14. Frontend → Submit withdraw request
15. Frontend → Store Settings
16. Frontend → Store Payment Settings
17. Frontend → Individual Seller Store-1
18. Frontend → Individual Seller Store-2
19. Frontend → Individual Seller Store-3
== Changelog ==
= v3.11.4 ( Jul 10, 2024 ) =
- **update:** Direct links to the relevant settings from vendor progress bar added.
- **fix:** Some deprecation warning resolved.
- **fix:** Shop URL rendered double slash when using WPML on vendor registration.
- **fix:** Fatal error in block editor on adding and editing page with customer-migration shortcode.
= v3.11.3 ( Jun 10, 2024 ) =
- **fix:** Responsive issue on vendor dashboard tabs preview.
= v3.11.2 ( May 27, 2024 ) =
- **update:** WooCommerce 8.9.1 Compatibility added.
= v3.11.1 ( May 16, 2024 ) =
- **new:** Action hook `dokan_dashboard_sidebar_start` added.
- **new:** Action hook `dokan_dashboard_sidebar_end` added.
= v3.11.0 ( May 10, 2024 ) =
- **fix:** The status of sub-orders does not update to completed if it contains only virtual products.
= v3.10.4 ( Apr 25, 2024 ) =
- **fix:** Vendor dashboard Order status filter menu displayed a duplicate border.
- **fix:** Vendor dashboard withdraw page display get hidden.
= v3.10.3 ( Apr 17, 2024 ) =
- **update:** Notification count support added for vendor dashboard
- **update:** added a new filter to set a default value for I am a customer / I am a vendor radio button
- **update:** Processing Order count added for vendor dashboard orders menu
- **update:** Performance improvements for vendor dashboard -> order details page -> downloadable product permission section
- **update:** Admin can change product author from REST API
Previously, product_author was read-only property, now admin can change product_author for an existing product or create a new product for another author.
- **update:** Warning message styling for selecting fixed cart discount on admin coupon add edit page
- **fix:** Advertisement product not purchasable for own product purchasing restriction
- **fix:** Header Template number one breaks without background image
- **fix:** html entity showing in product tag selection in vendor dashboard.
- **fix:** Vendor add notification switch in admin dashboard
- **fix:** Under wooCommerce my-account registration section, `I am a customer` was forced to be set as the default value. With this PR this problem has been fixed.
= v3.10.2 ( Apr 01, 2024 ) =
- **update:** Email placeholder, additional content support and formatting added
- **update:** Add requires plugin header for dokan so that required plugin check can be initiated.
- **fix:** Vendor profile progress bar doesn't update if the address is filled from the vendor registration form
- **fix:** Color synchronization issue in vendor dashboard order notes
- **fix:** product review email cannot be disabled without also disabling Contact Vendor email
- **fix:** Order Export to CSV on the filtered list not working
= v3.10.1 ( Mar 18, 2024 ) =
- **update:** Update Categories Easily from Vendor Edit Page
In earlier versions of the Dokan plugin for WordPress and WooCommerce, editing store categories was limited to the vendor details view page. This approach created confusion and made it difficult for users to manage their store categories effectively. However, with the latest update, a significant improvement has been introduced.
Now, you can conveniently edit and update your store categories directly from the vendor edit page in the admin dashboard. This enhancement provides a more intuitive and user-friendly experience, allowing you to efficiently manage and organize your store categories in one central location.
- **update:** Threads social media platform added as a Store Socials Option. Thanks `@fisher2470`
- **update:** Vendor Dashboard settings submenu translation support added
= v3.10.0 ( Mar 04, 2024 ) =
- **new:** Added a new filter hook named `dokan_product_cache_delete_all_data`, by using this one can prevent deleting product cache if necessary.
- **update:** Updated FontAwesome library to version 6.5.1
- **fix:** Fixed Elementor mega menu z-index conflict and removed line break from address fields
= v3.9.9 ( Feb 12, 2024 ) =
- **new:** Added PHP 8.2 support
- **fix:** Fixed an issue where the Dokan seller setup wizard does not display a warning message when a seller fails to provide the state for a country that has a state.
- **fix:** Vendor setup wizard issue [#1976] - Properly closed the style tag in the Store Setup step to avoid conflicts with customizations.
- **fix:** Fixed a bug in the store-lists-filter.php template that used the wrong escaping function for the placeholder attribute. [#1984]
- **fix:** Withdrawal class check-in Templates/Withdraw.php.
This fixes a fatal error that could occur when creating a withdrawal request with cache-enabled sites.
- **fix:** The `Share Essentials` field’s description was missing from the Dokan admin setup wizard. This pull request fixes an issue where the description field was not showing up in the Dokan admin setup wizard. It also adds a new hook and admin options to store the `Share Essentials` settings.
- **fix:** Fixed an issue where the sub-orders disappear from the WooCommerce order lists page when orders are filtered by a specific vendor or by sub-order ID when the HPOS feature is enabled.
- **update:** Added validation for bank payments and address data in Dokan Seller Setup Wizard.
= v3.9.8 ( Jan 30, 2024 ) =
- **fix:** Updated Appsero Client SDK library to version 2.0.2 which will fix a security issue with the previous version of the library and a fatal error caused by the library.
= v3.9.7 ( Jan 29, 2024 ) =
- **update:** Added WooCommerce Cart and Checkout Block supports for Dokan Lite
- **fix:** Fixed an issue where the vendor’s store map address was not saved during vendor setup wizard configuration
- **fix:** Some links under the vendor dashboard weren't working properly due to a nonce mismatch. With this release, those issues have been fixed.
- **fix:** Fixed an issue where the valid store name required check was missing from the customer-to-vendor migration form.
- **fix:** Fixed an issue where the customer buys digital and physical products from different vendors, shipping charges are applied separately to each vendor.
- **fix:** Fixed some translation-related issues with the date range picker
- **fix:** Fixed some translation-related issues with Dokan Sweetalert
= v3.9.6 ( Jan 11, 2024 ) =
- **new** Features: Withdraw Charge
Dokan has introduced a new feature that allows the admin to set a withdrawal charge for vendors. This charge can be either a flat rate or a percentage of the withdrawal amount based on the payment gateway used. The charge will be reflected in the details report, and vendors can see how many charges will apply when they request a withdrawal. The vendor dashboard list will also show the charge and receivable amount. This feature provides greater flexibility and transparency in managing vendor withdrawals.
= v3.9.5 ( Dec 28, 2023 ) =
- **fix:** API request on get all orders returns empty results for the endpoint http://dev.test/wp-json/dokan/v1/orders due to default customer id was set to 0.
= v3.9.4 ( Dec 12, 2023 ) =
- **fix:** Fixed an issue where the Vendor class shop_data persistence is broken on save()
- **fix:** Fixed a fatal error while trying to edit a subscription under WordPress Admin Panel → WooCommerce → Subscription menu of the WooCommerce Subscription Plugin.
- **fix:** Toggle Sub-Orders and Show Sub-Orders buttons are not working if HPOS feature is disabled.
= v3.9.3 ( Nov 30, 2023 ) =
- **fix:** Fixed an issue where the Tab fields under the product Add/Edit page don’t display predefined tags until users start typing to select tags.
= v3.9.2 ( Nov 13, 2023 ) =
- **new:** A new email template has been introduced named Dokan Vendor Product Review. After a product has been reviewed, an email containing information about the review is sent to the vendor. The email includes details such as the reviewer’s name, product name, review rating, and text. The email also contains a link to the review page where the vendor can view the review and respond if necessary.
- **update:** Display a non-purchasable notice for the vendor’s own products.
- **fix:** [RestAPI] Fixed an issue where getting a single order via API gives an 'invalid ID' error If the compatibility mode isn't enabled for the HPOS feature on WooCOmmerce Order data storage settings
- **fix:** [ProductReview] Previously the email notification sent by WordPress when a review was added to a product, was sent to the product owner. This was wrong in the context of a marketplace. Because the email sent by WordPress includes some sensitive information, like the admin dashboard URL, customer email address, etc. With these changes, we are making sure that only the marketplace admin gets the new review emails sent by WordPress.
- **fix:** Previously, there was an issue where selecting “All,” then “None,” and subsequently “All” again didn’t function as expected. This occurred on the vendor product edit page for simple products, specifically within the Attributes section. However, following this update, all special cases of the “Select All” feature now work flawlessly.
= v3.9.1 ( Oct 17, 2023 ) =
- **update:** Removed flaticon packages and replace used icons with fontAwesome icons. This will reduce the plugin zip size.
- **update:** Added a new settings to disable fontAwesome library
- **update:** Changed all the single date picker fields with daterange picker. This updates will keep the design consistent throughout the plugin.
- **fix:** [StoreOpenCloseTime] An issue where invalid store opening or closing times generate warning and fatal error on single store page.
- **fix:** [Email] Fixed an issue where the product edit link on email template redirects to the products listing instead of single product edit page
- **fix:** Fixed some responsive issue under vendor dashboard product edit page.
- **fix:** Fixed some responsive issue under vendor dashboard withdraw page.
= v3.9.0 ( Oct 06, 2023 ) =
- **new:** Added two new hooks named `dokan_get_admin_report_data` and `dokan_get_overview_data` to extend Dokan reports functionality.
- **fix:** Resolved an issue where the `Tracking Number` button was still visible under the `Vendor Dashboard → Order Details → Order Note section` even after the `Shipment Tracking` feature was enabled by the admin.
- **fix:** [WidgetProductAttribute] Fixed an issue where the `Filter Products by Attribute` widget was not working for Multi-Word Attributes.
- **update:** Added a new filter named `dokan_get_store_url` to filter store URLs for a single store.
- **update:** Removed some redundant or not required settings from vendor store settings page, also rearranged some admin settings and added some settings under Admin dashboard.
Details:
1. Removed `Show Vendor Info` settings under the `WordPress Admin Dashboard → Dokan → Settings → Appearance` and added it back under the `WordPress Admin Dashboard → Dokan → Settings → General → Product Page Settings` section.
2. Removed the `More Products` setting under `Vendor Dashboard → Settings → Store Settings` and added it back as a new Admin setting under `WordPress Admin Dashboard → Dokan → Settings → General → Product Page Settings` section. Now, only the admin can control this setting.
3. Removed redundant `Store Products Per Page` setting under `Vendor Dashboard → Settings → Store Settings`. Since the admin already has this setting under `WordPress Admin Dashboard → Dokan → Settings → General`, this setting will be used from now on and only the admin can control this setting.
4. Removed redundant `Store Page Product Section` settings under `Vendor Dashboard → Settings → Store Page Product Section`. Now, only the admin can control these settings under Theme Customizer settings.
= v3.8.3 ( Sep 26, 2023 ) =
- **update:** Added advanced filtering and CSV export feature for vendor withdraws under Admin Dashboard → Dokan → Withdraw menu.
The ‘Withdraw’ page on the admin dashboard has been updated with advanced filtering and log exporting features. This allows admins to filter transactions based on payment method and date range, which enhances their ability to analyze and manage withdrawals. The feature to export CSV logs is also included, which makes tracking and record-keeping easier. These integrations aim to empower marketplace owners with comprehensive tools for efficient withdrawal management within the dashboard.
- **update:** [Dokan Invoice] Added PDF invoice links on Sub Order section
Previously PDF invoice links was not visible on Sub Order section under customer order view. After this update customer will be able to view invoice link on sub order section.
- **update:** Added backend validation of phone number used on entire Dokan plugin.
- **update:** Store category widget list default state set to collapse.
Previously, if a store has a product count over 100 or more and the store has many product categories, the store category widget would display those categories and subcategories in an open state rather than collapsed state that the sidebar style gets broken. Now the list has a max height of 500px, which will be visible, and other elements will be visible by scrolling and the parent category that has a submenu will be in collapse mode.
- **update:** Various style improvements of Dokan frontend including Vendor Dashboard, Single Store Page, Single Product Page etc.
- **fix:** [Refund] Earlier, when refunding an order under the vendor dashboard, the tax amount decimal point rounding precision was inconsistent with WooCommerce. However, it has now been updated to be consistent with WooCommerce.
- **fix** Fixed an issue where the order status label was missing on vendor dashboard for draft orders.
= v3.8.2 ( Sep 13, 2023 ) =
- **new:** Feature: Single-page product creation form.
Before this release, vendors had to go through a two-step process to create a product. However, with this release, a single-page product creation form has been introduced. To enable this feature, you need to navigate to the WordPress admin panel → Dokan → Settings → Selling Options → One Page Product Creation.
It’s important to note that in the next version of Dokan, the Add New Product popup and the Add New Product form will be removed. After that, the Single-Page product form will be the default system for creating a product from the vendor dashboard.
- **new:** Feature: Ask for product review
The Ask for Product Review feature in Dokan allows vendors to set the product status to draft while creating a product using the single-page product creation form. After the vendor is satisfied with the edit, they can either ask for a review or publish the product directly based on the admin settings and vendor capability.
- **fix:** Fixed an issue where orders can’t be filtered by vendor under Admin Dashboard → WooCommerce → Order lists page if HPOS feature is enabled
- **fix:** Fixed an issue where multiple sub-orders has been created for a single parent order.
- **fix:** Fixed and issue while trying to delete all demo products also deleting non-dummy products while calling the API endpoints multiple times
- **fix:** Fixed an issue where Dokan Pro’s Product Status setting were used even though Dokan Pro plugin is deactivated.
- **fix:** Fixed an issue where products were visible beyond Simple Products in the product list page under the vendor dashboard when Dokan Pro was deactivated or not installed.
- **update:** Removed unnecessary product type filter from Vendor Dashboard product list page since there is only one product type available in Dokan Lite
- **update:** [VendorRegistration] Improved Compatibility with WooCommerce Password Settings
In the past, when vendors registered using the [dokan-vendor-registration] shortcode, the process did not align with WooCommerce's automatic password generation settings. However, in the latest update, we've enhanced this process. The vendor registration form presented through the [dokan-vendor-registration] shortcode now seamlessly adheres to WooCommerce's automatic password generation settings. This enhancement ensures a more unified and user-friendly registration experience for vendors, in line with WooCommerce's standard practices.
- **update:** Added shipping tax fee recipient field setting under admin setup wizard.
= v3.8.1 ( Aug 25, 2023 ) =
- **fix:** Fixed a console warning under Dokan admin settings for Google Map integration
- **fix:** [ReverseWithdrawal] Fixed an issue where Vendor/Admin cannot pay for reverse withdrawal balance due to a rule that vendor’s can’t purchase their own products.
= v3.8.0 ( Aug 18, 2023 ) =
- **update:** Added HPOS (High-Performance Order Storage) support for Dokan Lite.
- **fix:** Resolved an issue where traces of order data were left on the Dokan end even after the order had been deleted from the WordPress admin panel.
Previously, deleted orders were still visible under the Dashboard Overview menu, Reports menu, and under Withdraw menu. This issue has been fixed in the current release.
- **fix:** Multiple issues have been fixed after a product of an order has been deleted.
= v3.7.24 ( Jul 25, 2023 ) =
- **update:** Restrictions added for vendors to review and purchase their own products.
Previously, vendors could purchase and post reviews for their own product. Which is not logical and could manipulate the search results of a product in a marketplace. With this update, vendors will not be able to purchase or post reviews for their own product.
- **update:** [ReverseWithdrawal] Now Admin can request payment from vendors using the Reverse Withdrawal feature.
Currently, there is no way for Site admins to request payments from vendors. For some use cases, it is essential for admins to request money from vendors. For example: In Stripe 3DS mode, if customers ask for a refund, refund will be given from the admin Stripe account, after that vendor transfer will be reversed. But if the vendor doesn't have enough money in their stripe account transfer reversal will fail, in that case, vendor balance will be negative. Another case would be for non-connected vendors, in that case, admin will be responsible for refund and admin needs to request money from vendors.
- **update:** [AdminSettings] Added a toggle switch for Google ReCaptcha in the appearance settings for better control.
- **update:** [AdminSettings] Sensitive information like API keys, client secrets, etc., are now displayed as password fields with an unhide button to improve security.
- **update:** [AdminCommission] Now, "percentage" is selected by default if the admin setup wizard is skipped in the commission setting.
- **fix:** Added some missing translations.
Previously, the template folder at dokan-lite was missing when the .pot file was generated. With this fix template folder will be respected while generating the pot file.
= v3.7.23 ( Jul 14, 2023 ) =
- **fix:** Fixed an issue where the withdraw request could not be approved from the Admin Dashboard via REST API.
= v3.7.22 ( Jul 12, 2023 ) =
- **fix:** Fixed an issue where multiple withdrawal requests can be placed via API.
If a withdrawal request was placed by a vendor until that request was approved or rejected by Admin, making another withdrawal request wasn’t possible via frontend. However, the admin was able to make a withdrawal request via REST API. With this fix, this problem now has been resolved.
- **fix:** Fixed a PHP notice for importing dummy data without providing any data via REST API
endpoint: {{SERVER_URL}}/wp-json/dokan/v1/dummy-data/import
- **fix:** While updating the withdrawal request via REST API, the minimum withdrawal amount limit wasn’t considered. For example, if the minimum withdrawal limit was set to 50, for an existing withdrawal request, the admin can set the withdrawal value to less than 50. This issue has been fixed now.
endpoint: {{SERVER_URL}}/wp-json/dokan/v1/withdraw/{withdraw_id}
- **fix:** Fixed an issue where store products API was returning all products instead of published products.
endpoint: {{SERVER_URL}}/wp-json/dokan/v1/stores/{store_id}/products
- **fix:** Fixed some CSS issues on the vendor store settings page for the store banner image.
- **fix:** [Withdraw] Fixed an issue where PayPal withdraw method status was displaying default but the corresponding vendor didn’t set up the payment method yet. With this fix, we marked the payment method as needing setup instead of the default payment method.
- **fix:** [Withdraw] After connecting to a payment method, the button text changes from `Setup` to `Make default` or `default` if selected. But after disconnecting that method button text doesn't change back to `Setup`. Now this issue has been fixed.
- **update:** Updated vendor store API to support profile picture and banner delete feature. To delete one of these fields, one needs to set a 0 (zero) value while making the API request.
endpoint: {{SERVER_URL}}/wp-json/dokan/{{version}}/stores/{store_Id}
- **update:** Added various html tag support for rich text editors on various places of vendor dashboard.
Previously, the product editor on the vendor's side was a lot more limited than the one available on the admin side. With this update, we’ve included various tags, like heading elements, paragraphs, etc support for rich text editors.
- **update:** Added random ordering for store REST API endpoint,
Previously, random ordering for stores wasn’t available for store API. With this update, we’ve added this feature.
endpoint: {{SERVER_URL}}/wp-json/dokan/v1/stores/
- **update:** Added phone number validation for vendor dashboard store settings page and vendor registration form.
Previously, for phone numbers only numeric values were accepted, now a valid phone number including spaces, -, _, (, ), etc also supports phone number fields.
- **update:** [Withdraw] Fixed an issue where withdraw payment method wasn't enabled but can be used for both manual withdrawal and auto withdraw disbursement schedules from the vendor dashboard payment settings page.
= v3.7.21 ( Jun 23, 2023 ) =
- **fix:** Fixed an issue where gateway fees from WooCommerce PayPal Payments were not being deducted from vendors’ earnings.
Previously, Dokan deducted PayPal Checkout fees from vendors’ earnings but did not deduct PayPal Payments fees. This was due to the fact that PayPal Payments did not set transaction fee metadata at the time. With this fix, Dokan now correctly deducts PayPal Payments fees from vendors’ earnings.
- **fix:** [VendorDashboard] Fixed some CSS issues under the vendor dashboard.
Previously, the positioning of the mobile navigation icon on the vendor dashboard was problematic on mobile screens. Additionally, there were inconsistencies in some table columns, including the order ID column, causing visual issues. These issues have now been fixed.
- **fix:** [DokanVendorRegistration] Registration page's user selection modal is not working properly when any theme tries to use the modal for the vendor registration form.
In earlier versions, there was a lack of synchronization between the user registration form on the "My Account" page and the user registration forms inside the modal implemented within the theme. This inconsistency created confusion and hindered the seamless registration process. However, with the latest update, significant improvements have been made to address this issue.
- **update:** Added `Become A Vendor` feature to Dokan Lite.
Previously, this option was only available in Dokan Pro. This enhancement ensures that even customers of the Lite version can easily become vendors and start selling their products through the platform.
- **update:** [SellerSetupWizard] Added store location map on the seller setup wizard
Introducing a new enhancement in the seller setup wizard: seamless integration of a store location map. This enhancement allows sellers to effortlessly navigate and locate their store's position within the wizard interface.
= v3.7.20 ( Jun 8, 2023 ) =
- **new:** Added two new filter hooks named `dokan_get_vendor_orders_args` and `dokan_get_vendor_orders` to filter vendor’s order data.
You can now filter orders returned by the `dokan()->order->all()` method using the dokan_get_vendor_orders hook.
- **new:** Added a new filter named `dokan_get_new_post_status` for the function dokan_get_new_post_status()
Now you’ll be able to use your desired status for new products created by vendors using this filter.
- **fix:** Fixed a security issue related to insecure deserialization in the Dummy Data importer API endpoint.
- **fix:** Resolved an issue where the dokan_is_seller_dashboard() method was returning false when called from a WP Post Query Loop.
- **fix:** Ensured that the correct order status is displayed for vendors after updating an order.
Previously, in some cases, plugin or theme authors would hook into actions like woocommerce_order_status_changed and change the order status after it had been updated by the vendor. This update ensures that the correct order status is displayed to vendors after they update an order. Thanks to https://github.com/rmilesson for your contribution to fixing this issue.
- **fix:** Resolved an issue where store categories filtering was not showing proper results due to nonce validation fails.
Previously, when using store categories as a direct link to filter vendors with no valid nonce key attached to it, the filtering was not working correctly and vendors were not being displayed under their assigned store category. This issue has been addressed and store categories filtering now shows the correct results.
- **fix:** Resolved inconsistent behavior of pagination on the Single Store Page.
Previously, there were several issues with the pagination on the Single Store Page, including the “Previous” text displaying like the “Next” icon, the Last Page Menu icon not showing when all menus were visible, and the Active Page Menu background color not changing from the 4th page. These issues have been addressed and the pagination behavior is now consistent.
- **fix:** Resolved an issue where the discounted price field was not displayed correctly according to the theme used.
Previously, when viewing the “Add/Edit a product” page on the Vendor Dashboard, the discounted price field was not displayed in the same way as the price field box when using certain themes. This issue has been addressed and the discounted price field now displays correctly according to the theme used.
- **fix:** [AdminSetupWizard] The custom withdrawal method is now conditionally displayed in the admin setup wizard.
Previously, the custom withdrawal method could not be enabled in the wizard because it required the method name and type to be populated. Now, if the admin has previously saved these values, the custom withdrawal method will be displayed and can be activated in the wizard.
= v3.7.19 ( May 24, 2023 ) =
- **update:** Separated shipping tax fee recipient from the product tax fee recipient
- **update:** Added support for multiple shipping line items for suborders
- **update:** Moved shipping splitting functionality to Dokan Lite from Dokan Pro.Previously, this feature was only available on Dokan Pro.
- **update:** Improved the responsiveness of tables on the Vendor Dashboard by making them horizontally scrollable on smaller-sized screens.
- **fix:** Disabling product review from WooCommerce settings doesn’t remove the review section from the vendor profile.
- **fix:** Broken layout of Discounted Price section in Vendor Dashboard product edit page on full-width page layout themes.
- **fix:** Fixed some warnings and fatal errors for PHP versions 8.1 and 8.2.
- **fix:** Fixed incorrectly closed product category menu after_widget args
- **fix:** [VendorSetupWizard] Fixed an issue where the ‘Hide Email Address’ option was still displayed on the Vendor Setup wizard page even when it was enabled from Dokan Admin Settings.
- **fix:** Email notification for withdrawal approval no longer shows HTML code in its header.
= v3.7.18 ( May 10, 2023 ) =
- **fix:** Fixed product getting published after enabling vendor selling status from admin dashboard
- **update:** [ReverseWithdrawal] Added sold individually param to true for reverse withdrawal base product when creating it, so that quantity can't be changed
- **update:** [ColorSchemeCustomizer] Used color set by Color Scheme Customizer Module instead of hardcoded value for login form popup and withdraw schedule popup header color
- **update:** Remove expected earning calculation from product listing and editing pages
- **update:** Added a notice before deleting products via bulk action under Vendor Dashboard → Product listing page
- **update:** Added dokan_store_name meta-key for all users with administrator and shop_manager roles during plugin activation
= v3.7.17 ( Apr 17, 2023 ) =
- **fix:** JS console error while uploading non-image files to product gallery under vendor dashboard product add/edit page
- **fix:** Fixed order invoice and packaging slip broken CSS under vendor dashboard order list page
- **fix:** Fixed users are unable to register as customers on some themes, also fixed a JS console error on the My Account page
- **fix:** Fixed TinyMCE editor and search box overlap under Dokan Admin Settings page.
- **update:** Allow whitelisted countries in location selectors based on admin-allowed countries under WooCommerce settings.
= v3.7.16 ( Apr 10, 2023 ) =
- **fix:** [VendorDashboardAPI] Fixed an issue where the seller lifetime sales report wasn’t possible to retrieve via API.
- **fix:** [VendorDashboard]: Fixed wrong product count showing under vendor dashboard product listing page.
- **update:** [ReverseWithdrawalAPI] Added a new API Endpoint `dokan/v1/reverse-withdrawal/vendor-due-status` to get reverse balance due status for a vendor
- **update:** [ReverseWithdrawalAPI] Added a new API Endpoint `dokan/v1/reverse-withdrawal/add-to-cart` to add reverse balance to the cart.
- **update:** Allow only image format files as product featured and gallery images on vendor dashboard
- **update:** Added multistep category support in product API
= v3.7.15 ( Mar 23, 2023 ) =
- **new:** [CategoryPopup] Added a new settings to select any category from frontend
- **fix:** [VendorSignup] Fixed vendor can sign up even though store URL is not available
- **fix:** [ProductsRestAPI] Fixed in_stock, featured, on_sale filter for products rest API wasn't working
= v3.7.14 ( Mar 09, 2023 ) =
- **fix:** [RestAPI] Fatal error while activating Dokan Lite via wp-cli
- **fix:** [VendorStoreSettings] State option appear while choosing the country with no state
= v3.7.13 ( Mar 01, 2023 ) =
- **fix:** fixed a SQL injection issue
= v3.7.12 ( Feb 23, 2023 ) =
- **new:** Added a new js hook `dokan_middle_category_selection` by using this hook if anyone passes true in this hook user will be able to select any category in Dokan multi-step category and a new WordPress hook `dokan_middle_category_selection` where you also have to pass true select middle category.
- **update:** [LoginRedirection] Keep the sellers on the checkout page if they login from the checkout page.
- **update:** Added sub-description to the `hide vendor info` section under Dokan admin appearance settings
- **fix:** [AddNewProductPopup] Create & Add a new product button does not allow adding a product image during the time of adding more than one product has been fixed
- **fix:** Fixed a fatal error if the order is created from WooCommerce admin dashboard without adding any line items.
- **fix:** Fixed admin user permission/capability issue after permanently deleting the Dokan plugin.
- **fix:** [ReverseWithdrawal] Refund amount wasn’t subtracted from `Total Collected Values` for reverse withdrawal under the Admin Reverse Withdrawal menu.
- **fix:** [ReverseWithdrawal] The decimal value is not included under the `Total Collected` section of the admin dashboard Reverse Withdrawal menu.
- **fix:** Dokan Dashboard menu wasn’t loading if the permalink doesn’t include / at the end of the URL
- **fix:** Fixed product image thumbnail gets image height squeezed on add new product popup under vendor dashboard
= v3.7.11 ( Feb 13, 2023 ) =
- **fix:** Vendor search doesn't work correctly while admin assigns a vendor to a product from WooCommerce → Products → Add New page
- **fix:** The number of orders on the backend is not appearing depending on the vendor's own order count.
- **fix:** Fixed a fatal error while creating an order from the admin dashboard with no data
- **update:** Added vendor address-related fields under vendor registration form
- **update:** Changed text `New Vendor Product Upload` to `Enable Selling`. Also changed field description from `Allow newly registered vendors to add products` to `Immediately enable selling for newly registered vendors`
= v3.7.10 ( Jan 26, 2023 ) =
- **new:** Extended REST API support for Dokan
-- https://example.com/wp-json/dokan/v1/orders?after=2022-10-01&before=2022-10-30
-- https://example.com/wp-json/dokan/v1/vendor-dashboard/
-- https://example.com/wp-json/dokan/v1/vendor-dashboard/sales?from=2021-08-02T04:13:05Z&to=2021-12-02T04:13:05Z
-- https://example.com/wp-json/dokan/v1/vendor-dashboard/orders
-- https://example.com/wp-json/dokan/v1/vendor-dashboard/products
-- https://example.com/wp-json/dokan/v1/vendor-dashboard/profile
-- https://example.com/wp-json/dokan/v1/vendor-dashboard/preferences
-- https://example.com/wp-json/dokan/v2/orders/{order_id}/downloads
-- https://example.com/wp-json/dokan/v2/orders/
-- https://example.com/wp-json/dokan//v2/orders/bulk-actions
-- https://example.com/wp-json/dokan/v1/products/attributes/edit-product/{id}
-- https://example.com/wp-json/dokan/v1/products/attributes/set-default/{id}
-- https://example.com/wp-json/dokan/v1/blocks/products/{id}
-- https://example.com/wp-json/dokan/v2/settings
-- https://example.com/wp-json/dokan/v2/settings/{group_id}/{id}
-- https://example.com/wp-json/dokan/v2/settings/{group_id}/{parent_id}/{id}
-- https://example.com/wp-json/dokan/v2/withdraw/settings
-- https://example.com/wp-json/dokan/v2/withdraw/summary
-- https://example.com/wp-json/dokan/v2/products (new param added: author, post_status, date, product_cat, product_type, stock_status, filter_by_other)
-- https://example.com/wp-json/dokan/v2/products/filter-by-data
- **fix:** Multiple store category modal wasn’t working for some theme
- **fix:** Recreate reverse withdrawal payment product if no product found with stored product id
= v3.7.9 ( Jan 10, 2023 ) =
- **update:** Last-page and first-page pagination icon inconsistency under single store page product listing
- **update:** Adjusted store banner image stretching issue under store list page
- **fix:** Vendor email address is not showing up on the store header.
= v3.7.8 ( Dec 27, 2022 ) =
- **fix:** Single Store Page store header menu and search fields style break on mobile devices
- **fix:** Vendor dashboard total sales wasn’t displaying decimal values
- **fix:** Set user role as seller while creating vendor from api call
- **fix:** order note date issue under vendor dashboard order details page
= v3.7.7 ( Nov 30, 2022 ) =
- **update:** Added date filter - `after/before` for Order REST API
- **update:** Added `dokan_bank_payment_fields_placeholders` Filter to change the label and placeholder of bank payment fields
- **update:** Updated UI/UX of vendor dashboard submenu
- **update:** Added section, sub-section label, description search under Dokan admin settings
= v3.7.6 ( Nov 14, 2022 ) =
- **fix:** Fixed a sql security issue while searching for products via ajax from vendor dashboard
= v3.7.5 ( Nov 03, 2022 ) =
- **new:** Added a new hook named dokan_store_product_search_results to filter out store product search results closes
- **update:** Sort product categories under the vendor dashboard alphabetically
- **fix:** SweetAlert library is conflicting with the WooCommerce Conversion Tracking plugin
- **fix:** [BestSellingProductWidget] Products are being shown on the widget even when the catalog visibility is set to hidden.
- **fix:** [VendorDashboardProducts] Products of different statuses are not displayed in the appropriate tab from the vendor dashboard.
- **fix:** [ProductCategoryWidget] Sub Category dropdown on the Dokan Product Category widget doesn't work
- **fix:** [AdminProduct] When editing a product in the WordPress backend, the vendor select dropdown doesn't contain any data.
- **fix:** Fixed a fatal error on the report page if the same day is selected for both the start and end date to generate reports
- **fix:** [VendorSoreSettings] Store settings update button wasn't working if the Dokan Pro plugin isn't activated.
- **fix:** Store filtering using category was not working
= v3.7.4 ( Oct 27, 2022 ) =
- **fix:** Fixed a fatal error update updating to Dokan if Dokan Pro version is outdated
= v3.7.3 ( Oct 27, 2022 ) =
- **fix:** Fixed a fatal error due to a function moved from dokan pro
= v3.7.2 ( Oct 27, 2022 ) =
- **new:** Added a new filter hooked named `dokan_rest_api_store_collection_params` for StoreController request parameters
- **new:** Introduced `dokanVendorFilterSectionStart` and `DokanGetVendorArgs` js filter hooks
- **fix:** [AdminCommission] - Percentage Commission does not support "comma" as decimal separator under Dokan admin settings `Selling Options` page
- **fix:** [Products] Product author is assigned to the shop manager when the shop manager publishes a product drafted by the admin.
- **fix:** Spaces between paragraphs are too large under the store terms and condition page.
= v3.7.1 ( Oct 11, 2022 ) =
- **fix:** [VariableProduct] Fixed variable product's variation image uploading height size overlapping on price field.
- **fix:** [ProductSearch] Fixed product search of the product listing page of the vendor dashboard is not working.
- **fix:** [OrderEmail] Fixed multiple emails are sent to the customer when a parent order's status is changed to processing from failed payment.
- **fix:** Removed unwanted popup code from the SweetAlert library
- **fix:** Fixed the vendor dashboard adds new products' discount prices set to 0 by default.
- **fix:** Fixed vendor order page not showing line item qty and totals
= v3.7.0 ( Sep 27, 2022 ) =
- **new:** Added `dokan_selected_multistep_category` js hook after a category has been selected
- **update:** Fixed some security issues
- **update:** Performance enhancement for dokan
- **update:** Updated some JS libraries
- **update:** Vendor dashboard `add-product-single.php` file is renamed to `edit-product-single.php`
- **fix:** Select2 spacing issue CSS fix
- **fix:** Fixed vendor single store page profile picture CSS issue
- **fix:** Fixed vendor product page extra table field issue
- **fix:** Fixed admin dashboard vendor details page: social profile Twitter icon is not showing issue
- **fix:** Fixed multiple sub-categories of the same parent category is assigned to a product, they are not saved issue
- **fix:** [Store settings]: Not being able to add "+" or "-" sign to the phone number filed of the store on Firefox web browser.
- **fix:** Bank withdrawal method required field updated, Added a new filter hook `dokan_bank_payment_required_fields` so that site owner can manage required fields as they pleased
- **fix:** Category-based commission is not working when a category has child categories.
= v3.6.5 ( Aug 25, 2022 ) =
- **fix:** [WPML] Added WPML support for the multistep product category.
- **fix:** Order REST API endpoint displays other vendors orders.
= v3.6.4 ( Aug 10, 2022 ) =
- **new:** Added Catalog Mode Feature to Dokan Doc Link:
- **update:** Load asset (CSS/JS) files only on required pages
- **update:** Added $user_id as parameter for filter hook `dokan_is_store_open`
- **fix:** [security] Removed unfiltered_html capabilities from vendor user role
- **fix:** Fixed responsive issue of multistep product category UI.
- **fix:** [WPML] Vendor Dashboard Submenu not loading if translated to another language
- **fix:** Account Type for bank payment method is missing when admin is creating/editing a vendor
- **fix:** Paypal shows as connected for new vendors even though it is not connected
- **fix:** Can't skip seller setup wizard's Payment step by keeping some fields empty
- **fix:** Fixed Order By sorting parameters for Orders
- **fix:** Vendor Dashboard Add New Product URL changed to the product list page
- **fix:** Single store page default order by filtering wasn't working
- **fix:** Fixed third store header styling issue
- **fix:** When the admin updates or saves a product from the admin panel multistep product category feature wasn't working
= v3.6.3 ( Jul 26, 2022 ) =
- **update:** Added DateRange filter for vendor dashboard Orders page
- **new:** Added search by order id filter for vendor dashboard Orders page
= v3.6.2 ( Jul 15, 2022 ) =
- **new:** Added dummy data import feature for Dokan
- **update:** Multistep category modal for product add and edit page under vendor dashboard
- **update:** Added 'Back To Top' button & fix some design broken issue under Dokan admin settings page.
= v3.6.1 ( Jun 30, 2022 ) =
- **fix:** Fixed some empty method names in Payment Methods section of Vendor Dashboard > Withdraw
- **fix:** Fixed incorrect alignment of withdraw method title in Dokan setup wizard
- **fix:** Vendor Store breadcrumb URL redirecting to 404 page
- **update:** Added disconnect button to payment methods
- **update:** Removed 'Dokan' Prefix from the payment method name under vendor dashboard payment settings page.
- **update:** Added a new setting to change Vendor Setup Wizard welcome message under Dokan General Settings page.
= v3.6.0 ( Jun 14, 2022 ) =
**new:** Added a new filter named ‘dokan_bank_payment_validation_error’ so that payment validation errors can be filtered.
**update:** Entirely redesigned Dokan Admin Settings page
**fix:** WPML translated endpoints not working in payment settings page
= v3.5.1 ( May 31, 2022 ) =
**new:** Added Reverse Withdrawal feature
**update:** Determine if a seller is connected to a payment method
**update:** improved UI of Payment settings page
**update:** Correctly determine the vendor a product belongs to, so the "dokan_get_vendor_by_product" filter hook is called.
**fix:** Simple > Variable > External/Affiliate > Group Product > Fatal error.
**fix:** changing dokan vendor dashboard page slug gives 404 error
= v3.5.0 ( May 18, 2022 ) =
- **chore:** Minimum php version is set to 7.0
- **chore:** Minimum WooCommerce version is set to 5.0
- **chore:** Minimum WordPress version is set to 5.4
- **new:** Added a new product attributes widget, by which users/customers will be able to search products by vendors used attributes.
- **fix:** Fixed vendor store settings page phone number validation js console error
- **fix:** payment settings page 404 if dashboard url slug is changed
= v3.4.3 ( Apr 26, 2022 ) =
- **fix:** Store Contact Form widget submits the contact form directly instead of ajax submission
- **fix:** Stop sending new order emails to selected recipients (including admin) when the New Order email is disabled in WooCommerce Settings
- **update:** Updated design for the payment settings page of vendor dashboard to separate the management of different payment methods
- **new:** Added option to select a default payment method
- **fix:** Fixed some validation logic under vendor dashboard payment settings page
= v3.4.2 ( Apr 13, 2022 ) =
- **fix:** Fixed switching product type from variable to external doesn't remove product stock management options
- **fix:** Fixed store order by latest inconsistency
= v3.4.1 ( Mar 18, 2022 ) =
- **new:** Introduced two new filter hooks dokan_shipping_fee_recipient and dokan_tax_fee_recipient
- **fix:** Remove unnecessary error_log codes #1570
- **fix:** Promotional notice cache expiration date is set to one day
- **fix:** Fatal error on store closet time widget if store open/close time wasn’t set
- **fix:** Updated jQuery form validate library from v1.11.0 to v1.19.3
- **fix:** Fixed popup not appearing after clicking withdraw button under vendor dashboard
- **fix:** Product table css fix for error class
= v3.4.0 ( Mar 08, 2022 ) =
- **update:** Stop loading unnecessary style and script files on every page #1450
- **update:** Added random as store list orderby parameter
- **update:** Dokan store shortcode orderby parameter now reflect store filter.
- **fix:** Store open/close time hover feature wasn’t working for specific single store page templates #1549
- **fix:** Variable products stock status wasn’t updating by quick edit from vendor dashboard, now has been fixed #1553
- **fix:** Fixed Dokan conflict with WP Project Manager #1546
- **fix:** Store product per page value wasn’t saving, now has been fixed #1548
- **fix:** Fixed fatal error while getting store open close time under single store page
- **fix:** Remove background process files from database if file doesn’t exists on server due to server migration
= v3.3.9 ( Feb 28, 2022 ) =
- **update:** Added theme customizer settings to set default order by filter for store listing page #1505
- **update:** Added seller information under single product page, also added an admin setting entry to enable/disable this feature #1506
- **update:** Display store open/close time list on hover under single store page. #1517
- **fix:** Added post_date_gmt and post_modified_gmt fields data when creating a product from frontend dashboard #1514
- **fix:** Create order API with coupon lines data giving fatal error, thanks to James Bechet for this fix #1441
= v3.3.8 ( Feb 17, 2022 ) =
- **fix:** Store open close time widget wasn't working
= v3.3.7 ( Feb 03, 2022 ) =
- **feat:** Added Featured, Latest, Best Selling, Top Rated Product sections under single store page
- **update:** Updated UI for Withdraw menu
- **update:** Updated design for Upgrade to PRO popup
- **update:** Added Dokan upgrader to change dokan_withdraw table details column null
- **update:** Added per_page and page param support on store products rest api
- **update:** Updated FontAwesome library from V4.7 to V5.15
- **update:** Updated chartjs library, this was causing conflict issue with various js files
- **fix:** Fixed a css issue under Select2 library
- **fix:** Make Hello text translatable under product published email template
- **fix:** Fixed a warning under single store page if store slug was invalid
- **fix:** prevent recursion while loading template if $name param is not empty
- **fix:** When setting bulk regular prices from the vendor dashboard in a variable product the product stock status becomes out of stock. This issue has been fixed now.
= v3.3.6 ( Jan 10, 2022 ) =
- **fix:** css class added for styling order details page #1468
- **fix:** Item meta is not being deleted from the order details page of the WordPress dashboard #1458
- **fix:** Showing Vendor or Store Name on the order details page of WooCommerce #1456
- **fix:** Conflict with Siteground optimizer plugin #1474
= v3.3.5 ( Dec 23, 2021 ) =
- **fix:** Fatal error while creating new vendor.
- **fix:** Conflict Dokan admin notices scripts with customizer page and WPML string translation page.
= v3.3.4 ( Dec 15, 2021 ) =
- **fix:** Asset loading issue for admin notice
= v3.3.3 ( Dec 15, 2021 ) =
- **new:** Added what’s New page for Dokan Lite #1427
- **new:** Grouped all Dokan admin notices into a single notice with slider #1427
- **update:** reCaptcha integration added to store contact form #1422
- **update:** Redesigned Dokan admin header section. Also added some useful links under admin bar. #1427
- **fix:** select2 dropdown margin issue fixed #1446
- **fix:** Fix loading issue while loading Dokan pages when permalink sets to plain text, Also added a notice to instruct users to change permalink setting. #1444
= v3.3.2 ( Nov 30, 2021 ) =
- **update:** Caching Enhancement and Fixes
- **update:** Added tooltips for setting options
- **update:** Google Map and Mapbox setting fields will be always visible
- **fix:** Product was creating via API even selling option was disabled for a vendor
- **fix:** Withdraw details field value conflict with old withdraw data
= v3.3.1 ( Nov 12, 2021 ) =
- **new:** Added Vue DateRangePicker library #1409
- **update:** updated vendor store per page placeholder text #1396
- **update:** Removed user switch setting from Dokan selling setting, now user switching will work if plugin exists #1394
- **fix:** Added missing param on woocommerce_admin_order_item_headers #1414
- **fix:** Fixed WC mail template overwrite wasn’t working #1403
- **fix:** add call to filter dokan_product_cat_dropdown_args to listing-filter.php #1408 (thanks to David Marín )
- **fix:** updated dokan_product_seller_info() function to not to add vendor data if vendor id doesn’t exists #1401 (thanks to David Marín )
- **fix:** Hide `Show email address in store` settings from store settings page if admin disable this settings from customiser. #1393
- **fix:** added upgrader to change refund and withdraw database table column #1391
- **add:** Black Friday promotion 2021 #1411
= v3.3.0 ( Oct 31, 2021 ) =
- **update:** Added integration of sweetalert2 for alert, prompt, confirm, toast notification
- **fix:** Fixed typo in vendor earning tooltip.
- **fix** Vendor wasn't getting a notification when order status change from cancelled to processing, on-hold, or completed. This has been fixed now
= v3.2.15 ( Oct 13, 2021 ) =
- **feat:** Permanently delete Dokan related data (custom tables, options, pages, user roles and capabilities etc) after plugin delete based on admin Setting
- **new:** added filter hook dokan_store_banner_default_width and dokan_store_banner_default_height so that theme/plugin author can change store banner with and height based on their needs
- **new:** Added Dokan stores page link under Admin bar menu, from now on “Visit Store” redirects to Dokan store list page and “Visit Shop” directs to WooCommerce Product list page.
- **new:** Added integration of sweetalert2 to replace default javascript alert, prompt, confirm, and toast notifications
- **update:** Added a new tooltip in vendor dashboard product listing page after earning column to clarify vendors about possible earning from their products
- **update:** Added localization support for text "Calculating"
- **update:** Now Dokan page view count will be stored in the browser’s Local Storage instead of browser Cookies. Some caching plugins weren't able to cache single product pages due to this. This fix will let caching plugins to cache single product pages from now on
- **fix:** Single product page used to display the seller's real name instead of store name on the vendor info tab. Issue has been resolved now.
- **fix:** When a vendor adds a new product If the form has any validation error then old selected tags went missing. This issue has been resolved now.
- **fix:** Store Address input fields were missing in vendor dashboard’s store setting form when the Dokan Pro plugin was not installed. Now this issue has been fixed.
- **fix:** Removed vendor verification verified status check from vendor dashboard’s store settings page if dokan pro is not installed or vendor verification module is not active
- **fix:** Single Store product category wasn’t working if WPML plugin was installed. Now this issue has been fixed.,
- **fix:** Added validation for withdraw limit
- **fix:** Corrected spelling to 'picture' from 'picutre'
- **fix:** In the latest version of Divi, theme assets weren’t loading if a single store page doesn’t contain any product. This issue has been fixed now.
- **fix:** Vendor Contact form didn't contain “Reply To” email address when a customer would contact a vendor via the vendor contact form widget. Issue has been resolved now.
= v3.2.14 ( Oct 04, 2021 ) =
- **fix:** multiple issue fixed in WPML integration with Dokan
= v3.2.13 ( Sep 30, 2021 ) =
- **fix:** fixed warning on product listing page due to filter data type mismatch
- **update:** added dynamic filter named: dokan_manage_shop_order_custom_columns_%s hook under shop_order_custom_columns method
- **feat:** Set limitation for how many product tags that vendor can input, admin can set tag limit via filter hook: dokan_product_tags_select_max_length