forked from multivendorx/MultiVendorX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
1866 lines (1619 loc) · 93.6 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
=== MultiVendorX Marketplace - WooCommerce MultiVendor Marketplace Solution ===
Contributors: wcmp, purnendu
Tags: multi vendor marketplace, woocommerce multivendor marketplace, multi seller store, product vendors, best marketplace plugin, multi seller, one product multi seller, woocommerce vendors, ebay, etsy, amazon, commission rate, marketplace, multi vendor, woocommerce marketplace, woocommerce multivendor, multivendor
Donate link: http://multivendorx.com/donate/
Requires at least: 5.4
Tested up to: 6.4.3
Requires PHP: 8.0
Stable tag: 4.1.3
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
MultiVendorX - brings you, your easiest and one stop solution to build a perfect online marketplace website.
== Description ==
= BEST MULTIVENDOR MARKETPLACE PLUGIN - MULTIVENDORX - BASED ON WOOCOMMERCE POWERED BY WORDPRESS =
Build a **WooCommerce multivendor marketplace** that is compatible with most **WooCommerce** payment gateways. Use the **best WooCommerce marketplace software** to create your dream marketplace. Whether it's a virtual eCommerce or a booking or a Rental marketplace, MultiVendorX is your best option!! This free WordPress plugin equips you with the best features to create any marketplace. So, **create a website like Amazon, Etsy, or Airbnb** without dropping a sweat.
[Try Our Demo](https://multivendordemo.com/) | [Support](https://multivendorx.com/support-forum/) | [Features](https://multivendorx.com/features/) | [Pro](https://multivendorx.com/pricing/) | [Videos](https://www.youtube.com/@MultiVendorX/videos)
### Try us because we provide:
* **Free Software** that requires **no codes** to start with
* **Regular Updates** for security fixes and better user experience
* A fabulous **Support Team**
### Marketplaces You Can Set Up with MultiVendorX *:
* **[Niche Marketplace](https://multivendorx.com/booking-marketplace/) like Myntra, Nykaa**
* **[Booking marketplace](https://multivendorx.com/booking-marketplace/) like Oyo, Airbnb, MakeMyTrip**
* **[Rental Marketplace](https://multivendorx.com/rental-marketplace/) like Craigslist, Yo!Rent**
* **[Subscription Marketplace](https://multivendorx.com/subscription-marketplace/) like Cratejoy, OwlCrate**
* **[Auction Marketplace](https://multivendorx.com/auction-marketplace/) like ebay and Etsy**
* **Retail Marketplace like Amazon, Flipkart**
* **Local Online Marketplace like ebay, Rakuten, AliExpress**
### Why choose the MultiVendorX software solution?
##### ✓ **Free Tools for Marketplace Beginners** - MultiVendorX presents you with a range of WooCommerce marketplace friendly tools that can help you operate any kind of marketplace, be it an all-in-one **marketplace like Amazon** or a niche marketplace like **Etsy**.
##### ✓ **Easy Startup Guide** - MultiVendorX plugin provides you with an **[Easy Setup Wizard](https://multivendorx.com/docs/knowledgebase/admin-multi-step-setup-wizard/)**, which will help you get started in no time
##### ✓ **Simple Application Process** - Do away with all the complicated processes involved in creating a personalised registration form as MVX provides you with a [**customisable registration form**](https://multivendorx.com/docs/knowledgebase/vendors-registration/). With this registration form, you can add, remove or change the query details anyway you like.
##### ✓ **Personalised Dashboard** - With MVX you get an uncomplicated [**user friendly dashboard**](https://multivendorx.com/docs/knowledgebase/commission-concept/) that can help your vendors manage and track all their tasks. Whatever you want to track and manage you can convert this dashboard into a **sales dashboard, report dashboard or a management dashboard**.
##### ✓ **Adjustable Commission plans** - Add more to your revenue, by adopting the flexible commission plans only MVX can provide. The [commission structure](https://multivendorx.com/docs/knowledgebase/types-of-commission/) set by us is created in such a way that you can add various **commission rates**, charge [any commission fee](https://multivendorx.com/docs/knowledgebase/disbursement-of-payments/) and calculate commissions based on multiple commission types. This woocommerce marketplace plugin is packed with features that lead to a stress-free commission management.
##### ✓ **[Marketplace for everything](https://multivendorx.com/docs/knowladgebase/simple-product/)** - With more than a few products options to choose from MVX lets you create a marketplace for **any type of product** you desire. So whether it is **Digital or downloadable products** like **e-books** and **movies** you can create a site like **Sellfy** or **E-Junkie.** Or even marketplaces like **Oyo**, **Craigslist, ShareAsale and Cratejoy** can easily be created with a few clicks.
##### ✓ **Trustworthy [Vendor/ Seller ](https://multivendorx.com/docs/knowladgebase/vendors-management/)Manager -** In a **multi-vendor** site keeping track of your vendors is very important. With MVX this job becomes easier as we provide you with a **vendor list** that provides you with the names and information of any vendor irrespective of their **application status**. Furthermore, you can refine your list of vendors by using various **filters based on a vendor's location, Application status or name**. Along with this, you have access to a customisable **vendor database** that allows you to monitor and manage a vendor’s personal store from your own dashboard.
##### ✓ [**Product Manager**](https://multivendorx.com/docs/knowladgebase/product-management-capability/) - This WooCommerce marketplace plugin helps your turn your simple store in a **product multi vendor market** by providing you with essential management tools. With the tools, provided vendors can freely **list products, export and import product details** and continue with the **bulk product uploads**.
##### ✓ **Multiple vendors that sell the same product** - While there are numerous advantages to an **online marketplace**, nothing beats the physical market. To bridge this gap between virtual and brick-and-mortar models MultiVendorX offers the [**Single Product Multiple Vendors**](https://multivendorx.com/docs/knowladgebase/single-product-multiple-vendors-spmv/) features. And what makes this feature amazing is that it lets customers know which product they and at what price from the **list of product** sellers given.
##### ✓ **In-built Order Manager** - This multi-vendor WordPress tool helps you manage your orders with ease using key features like **Order lists, Order Details, and Order Status Manager**. Apart from these other tools like **the Split Order module, Order notes** and **Order Mails** are a definite gain that is sure to make managing orders a pleasing experience for you. [Read here to learn more about MVX Order Manager.](https://multivendorx.com/docs/knowladgebase/orders-management/)
##### ✓ **Refund manager** - MVX presents you with a **refund management software** that enables you to set **refund options** that help customers avail a refund. These options can be set as per the **refund status** of a product thus allowing you to have as much control as possible.
##### ✓ **Create Coupons** - Increase your website traffic with an enhanced coupon management system provided by MVX. With this coupon manager vendors can set **coupon codes, create discount codes and promo codes** and **renew** old coupon codes. [To know more about the MVX coupon manager and how it is different from others read here.](https://multivendorx.com/docs/knowladgebase/coupon-management/)
##### ✓ **Multiple Payment Methods** - MultiVendorX offers an impressive range of payment options like **PayPal, MassPay, Direct Bank Transfer and Stripe.** Along with this MVX can integrate any compatible **WooCommerce payment gateway** option of your choice. With all the **eCommerce payment gateways** offered by MVX, the **payment process** becomes seamless. [To learn more about MVX Payments follow this document.](https://multivendorx.com/docs/knowledgebase/payment/)
##### ✓ [**Flexible Shipping** ](https://multivendorx.com/docs/knowladgebase/shipping/)- Make managing shipping more effective and efficient with the MultiVendorX plugin, as we provide you with the option of **vendor shipping**. **This woocommerce marketplace plugin lets** Vendors can charge various **shipping rates based** on weight, country, or product category. Vendors also get the **shipping tracking** option, to track the status of a delivery.
##### ✓ **Trustworthy Customers Support** - MultiVendorX knows how much you treasure your customers which is why we offer your customer support tools like **[Vendor Reviews](https://multivendorx.com/docs/knowledgebase/store-review/)**, Product Question and Answers, **[Store Support](https://multivendorx.com/docs/knowledgebase/store-support/)** that will help you support your customers and create trust in them.
##### ✓ **Social Marketplace -** MultiVendorX also provides support to help you create a marketplace like **Facebook marketplace**. Now you can utilise the power of social media to not only communicate but also sell products. As MultiVendorX is **[BBPress or BuddyPress Compatible](https://multivendorx.com/docs/knowledgebase/mvx-buddypress/),** you will not only be able to connect with consumers and customers on your site but also your vendors and their associates**.** **Didn’t realize how flexible this woocommerce marketplace plugin could be? So did we!**
##### ✓ [**Easy Migration Support**](https://multivendorx.com/docs/knowledgebase/migration/) - MVX encourages its customers to sample everything before they invest into our plugin for a long term. Which is why users who wish to switch from **Dokan, WCFM or WC Vendors** can now happily convert into a MVXian, without the fear of losing precious data. The easy migration tool will allow its users to transfer data gathered from using Dokan or any other WooCommerce compatible marketplace plugin to MVX without breaking a sweat.
##### ✓ [** Multiple Language Support**](https://multivendorx.com/docs/knowledgebase/mvx-wpml/) - With the latest addition of the **WPML integration** vendors can now organize their product data in various languages.
##### ✓ **Elementor Compatibility** - Another easy to use feature added by MVX by making itself Elementor compatible is the easy page builder feature. This feature let's vendors create shop pages by **easily dragging and dropping elements** they feel is necessary for their store.
##### ✓ **Follow Store -** Another latest innovation from MVX is the follow Store feature that let's customers be posted with store updates of their choice.
##### ✓ **Notification Tools** - You can find other management tools with MultiVendorX like **[Announcements](https://multivendorx.com/docs/knowledgebase/announcement/)**, Workboards, and **[Knowledgebase](https://multivendorx.com/docs/knowladgebase/knowledgebase/)**. These tools are unique to only the MultiVendorX plugin.
### Taste Victory with Advanced Features
Competition requires having the right toolkit. To keep you ahead of your competitors, we bring to you a list of **affordable** and upgraded features with MultiVendorX Pro.
##### ✓ **Customizable Vendor Shop** - Vendors can create and customise any kind of **virtual store** like a **baseball shop, a shoe-repair shop, ski shop** and others to customers by using our store management dashboard. To help vendors customize their vendor shops, we provide them with tools like **Store Logo, [Store Banner](https://multivendorx.com/docs/knowladgebase/vendors-management/), [Store location](https://multivendorx.com/docs/knowladgebase/store-location/),** and **Social media links.**
##### ✓ **Advanced Product Features -** MVX shares one goal that is to provide its users with any kind of marketplace they desire. To fulfil this goal, MVX presents a **premium modules** like [**Various Product Types**](https://multivendorx.com/pricing/). With this add-on, vendors can upload any type of product like **bookings, rental, accommodation, auction, subscription,** and many more. They can also export-**import products**, **create product add-ons** and many more. [To know more about MultiVendorX Pro read here. ](https://multivendorx.com/pricing/)
##### ✓ [**Customizable Membership Plan**](https://multivendorx.com/docs/knowladgebase/marketplace-memberhsip/) - **Membership model** businesses have flourished quite well. You can now create membership packages like **Free membership**, **trial membership** or **paid membership** package using our MVX Vendor membership. Here you can decide the **membership fee, adjust price rates** and create **membership benefits** and plans to your desire.
##### ✓ [**Advanced Product Catalogue**](https://multivendorx.com/woocommerce-product-catalog-mode-pro-quote-request/) - With [WooCommerce Quote & Product Catalog Enquiry](https://multivendorx.com/woocommerce-product-catalog-mode-pro-quote-request/), you can create a catalog that allows customers to view your products. But what makes this added feature even more unique is the **inquiry cart** option, which lets customers [inquire about multiple products](https://multivendorx.com/woocommerce-product-catalog-mode-pro-quote-request/) all at the same time. To make this feature sound more useful, you can create a **catalog list** showcasing all your products along with the add-to-cart option. There is also an enquire now button that allows customers to enquire immediately.
##### ✓ **Advanced Analytics-** Allow your vendors to grow further with advanced features like [Store SEO](https://multivendorx.com/docs/knowladgebase/store-seo/) that gives them the power of **Google Analytics** for actionable and accurate data. Along with this, our plugin is compatible with some of the **best SEO plugins** like **Yoast** and **Rank Math**, which is assured to increase your SERP Ranking.
##### ✓ **Store Inventory** - Business stability can sometimes depend on proper **[inventory control](https://multivendorx.com/docs/knowladgebase/store-inventory/)**. MVX provides you with **inventory software** that helps you keep track of your inventory, set a low stock limit and manage inventory entries when and how required.
##### ✓ **Buisness Hours and vacation -** MultiVendorX’s dual-purpose business hours and vacation pro module is the right fit for your business. Especially if you want to give your vendors a break every now and then. The vacation module uses a [vacation calendar](https://multivendorx.com/docs/knowladgebase/vacation/) that works as a **tracker**, notifying admins of vendor off days. Business hours allow a vendor to display a shop hours widget that displays the opening and closing times of a shop.
##### ✓ **[Invoice & Packaging Slip](https://multivendorx.com/docs/knowladgebase/invoice-packing-slip/) ** - MVX provides vendors with a personalized invoice management software that lets them send invoices to their customers. Using this add-on invoices can be automatically generated and sent to the respective user. In addition to this vendors can choose their desired **vendor template** to create their invoice.
##### ✓ **[Staff Manager](https://multivendorx.com/docs/knowladgebase/staff-manager/)** - Unburden your vendors with perfect **staff management software** that helps them hire innumerable members of staff, manage staff responsibilities and track staff workers.
# Marketplaces You Can Set Up with MultiVendorX
- **Local Online Marketplace like ebay, Rakuten, AliExpress**
- **Retail Marketplace like Amazon, Flipkart**
- **Niche Marketplace like Myntra, Nykaa**
- **Booking marketplace like Oyo, Airbnb, MakeMy Trip**
- **Rental Marketplace like Craigslist, Yo!Rent**
- **Subscription Marketplace like Cratejoy, OwlCrate**
- **Marketplace like Esty**
- **Marketplace like Amazon**
- **Marketplace like Flipkart**
Note: MultiVendorX does not set an e-commerce platform, but it converts an e-commerce platform into a marketplace.
### MultiVendorX List of Free and Advanced Features
- **Hassle-free Migration Support (New)**
- **Elementor Compatibility (New)**
- **WPML multi-language support (New)**
- **MVX Follow Store (New)**
- **Easy Setup Guide**
- **Admin Setup Wizard**
- Vendor Setup Wizard
- Swift **Application**
- **Customizable** Vendors **Registration Form**
- **Managing Multiple Vendors on a Multi-Vendor Site**
- **[Seller Verification](https://multivendorx.com/docs/knowledgebase/identity-verification/) (Pro)**
- **Vendor List**
- Vendor’s Information/ Archive
- **Powerful Product Tools**
- Effortlessly **upload product**
- Product GTINs
- **Bulk Product Upload**
- **Product import-export (Pro)**
- **Multiple Product Type Support**
- Simple Product
- Downloadable Product
- Virtual Product
- Variable Product (Pro)
- Grouped Product (Pro)
- Affiliate Product (Pro)**
- Bookings (Pro)**
- Rental (Pro)**
- Accommodation(Pro)**
- **Subscription (Pro)**
- Bundled (Pro)
- Stress-free Order Manager
- **Order Lists**
- Order Status list
- **Track Order**
- **Manage Inventory** with MVX Stock Alert
- **[Inventory list ](https://multivendorx.com/woocommerce-product-stock-manager-notifier-pro/)(Pro)**
- [Stock Alert](https://multivendorx.com/docs/knowladgebase/store-inventory/) (Pro)
- **Suitable Payment Gateway**
- **[PayPal](https://multivendorx.com/docs/knowladgebase/paypal-marketplace-real-time-split/)**
- **MassPay**
- **Stripe and [Stripe Add-On](https://multivendorx.com/docs/knowladgebase/stripe-marketplace/)**
- **[Mangopay](https://multivendorx.com/docs/knowledgebase/mangopay/) (Pro)**
- **[Flexible Shipping](https://multivendorx.com/docs/knowladgebase/shipping/)**
- Weight-Based Shipping
- Product Based Shipping
- Print Shipping Label
- **Shipping Tracking**
- **Diverse Commission and Commission Types**
- **[Product Commission](https://multivendorx.com/docs/knowladgebase/types-of-commission/)**
- [Category based Commission](https://multivendorx.com/docs/knowladgebase/types-of-commission/)
- **[Vendor Based Commission](https://multivendorx.com/docs/knowladgebase/types-of-commission/)**
- [Commission for everyone](https://multivendorx.com/docs/knowladgebase/commission-concept/)
- Percentage Commission
- **Fixed-Rate Commission**
- Fixed+Percentage commission per transaction
- Fixed+Percentage Commission Per Unit
- **[Multiple Reports](https://multivendorx.com/docs/knowledgebase/store-analytics/)**
- **Sales**
- **Product**
- **Vendor**
- **Earnings**
- Category (Pro)
- **Tax (Pro)**
- **Downloads Report (Pro)**
- [**Advanced Product Catalogue**](https://multivendorx.com/woocommerce-product-catalog-mode-pro-quote-request/)
- **Product Catalogue (Pro)**
- **Product inquiry(Pro)**
- **[Personalized Invoice ](https://multivendorx.com/docs/knowladgebase/invoice-packing-slip/)**
- **Auto-Generated Invoice (Pro)**
- **PDF and Packaging Slip Download(Pro)**
- Fully Customisable(Pro)
- **[SEO and Google Analytics](https://multivendorx.com/docs/knowladgebase/store-seo/)**
- **Track Google Analytics data (Pro)**
- **Yoast Compatible (Pro)**
- **Customizable Open-graph Messages (Pro)**
- **[Vendor Shop hours](https://multivendorx.com/docs/knowledgebase/vacation/)**
- **Shop’s Business hours(Pro)**
- **Vendor Holiday Calendar]**
- **Vacation Messages(Pro)**
- **Individual Seller Dashboard**
- **Product Manager**
- **Order Manager**
- **Coupon Manager**
- **Reports Manager**
- **Payment Manager**
- **[Vendor Staff](https://multivendorx.com/docs/knowledgebase/staff-manager/)**
- **Manage Staff (Pro)**
- **Assign Tasks(Pro)**
- **Track Staff Members(Pro)**
## Words of Trust
[“Plugin works as promised and the customer service rocks."](https://wordpress.org/support/topic/plugin-works-as-promised-and-customer-service-rocks/) ~ [***Fredo Lopez***](https://wordpress.org/support/topic/plugin-works-as-promised-and-customer-service-rocks/)
[“The plugin is really awesome. Almost all the important things are free to use! And the support within the forum is very great. ](https://wordpress.org/support/topic/awesome-plugin-great-support-62/)[**Anyway for free support.**](https://wordpress.org/support/topic/awesome-plugin-great-support-62/) [I think it’s out of the ordinary that for something](https://wordpress.org/support/topic/awesome-plugin-great-support-62/) [**you don’t pay anything**](https://wordpress.org/support/topic/awesome-plugin-great-support-62/) [to receive source code which you just can copy/paste and if there are issues you will get further help."](https://wordpress.org/support/topic/awesome-plugin-great-support-62/) ~ [***Itunes1995***](https://wordpress.org/support/topic/awesome-plugin-great-support-62/)
[“100% recommendable! ](https://wordpress.org/support/topic/great-plugin-and-amazing-support-72/)[**Amazing plugin, it works perfectly as it is described and it is compatible 100% with woocommerce plugin.**](https://wordpress.org/support/topic/great-plugin-and-amazing-support-72/) [The Support is also great, always keen to help you with any issue you have and in a short time. So, I can only say thanks to all the MultiVendorX team and congratulations for your plugin.”](https://wordpress.org/support/topic/great-plugin-and-amazing-support-72/) ~ [***Axelte***](https://wordpress.org/support/topic/great-plugin-and-amazing-support-72/)
To know more on what we learnt from our customer [***read this blog*** ](https://multivendorx.com/blog/what-we-learnt-from-our-customers/)
### [Popular Blogs ](https://multivendorx.com/blog/)
Confused about **how to get started**? Read our Blogs on**e-commerce best practices**, **Multivendor Shops, how to increase your website traffic** and many more. These blogs are powerful, inspirational and detailed enough to educate on anything marketplace.
### Stay Connected
Stay connected with MultiVendorX and reap benefits like -
**[Quick Setup QuickStart ](https://multivendorx.com/docs/knowledgebase/admin-multi-step-setup-wizard/)** - Setting up a Marketplace has now become more comfortable with our easy to follow Setup Wizard.
**[A Support team that’s always got your back](https://multivendorx.com/support-forum/)** - MultiVendorX has a round-the-clock support team that is there to help you in case you run into any trouble.
**[A grade Knowledgebase](https://multivendorx.com/docs/knowledgebase/)** - MultiVendorX has a well-written knowledge base that gives you a fair idea of our plugin
**[We Keep Our Ears Open](https://multivendorx.com/custom-development/)** - MultiVendorX is open to new ideas and suggestions as we look forward to the little tit-bits provided by you.
**[Fixing Common Errors](https://github.com/multivendorx/MultiVendorX)** - With MultiVendorX, you can expect to see constant improvement as we try to fix our mistakes as soon as it occurs.
**[Frequently Asked Questions](https://multivendorx.com/get-help/faqs/)** - MultiVendorX team is happy to answer any queries you have so expect to receive answers for most of your queries here.
== Installation ==
NOTE: MultiVendorX plugin is an extension of WooCommerce, so the WooCommerce plugin must be installed and activated in your WordPress site for this plugin to work properly.
1. Download and install MultiVendorX plugin using the built-in WordPress plugin installer.
If you download MultiVendorX plugin manually, make sure it is uploaded to `/wp-content/plugins/` and activate the plugin through the `Plugins` menu in WordPress. Or follow the steps below:
Plugins > Add new > Upload plugin > Upload dc-woocommerce-multi-vendor.zip > Install Now > Activate Plugin.
2. Configure as you see fit, under MVX / Settings.
3. Configure email notifications from WooCommerce / Settings.
4. View Commissions under MVX / Commissions.
5. View reports MVX / Reports.
== Frequently Asked Questions ==
= Does this plugin work with newest WP version and also older versions? =
Ans. Yes, this plugin works fine with WordPress 6.1.1! It is also compatible for older WordPress versions upto 4.2.
= Up to which version of WooCommerce this plugin compatible with? =
Ans. This plugin is compatible with the latest version of WooCommerce.
= Up to which version of PHP this plugin is compatible with? =
Ans. This plugin is tested with PHP version 8.0.7.
= Where can I find the REST API documentation? =
Ans. You can find the documentation of our REST API on the [MVX REST API Docs](https://multivendorx.github.io/#introduction).
= MultiVendorX is awesome! Can I contribute? =
Ans. Obviously, you can! Join in on our [GitHub repository](https://github.com/multivendorx/MultiVendorX) :)
== Screenshots ==
1. Vendor Dashboard.
2. General settings.
3. Vendor front-end settings.
4. Payment settings.
5. Capability settings.
6. Vendor storefront settings.
7. Vendor commissions.
8. Vendor sales reports.
9. Product specific sales report.
10. Vendors management backend.
11. Vendor quick view.
12. Vendor application and admin notes.
13. Vendor profile management form dashboard.
14. Show Multiple Seller in Single Product.
== Changelog ==
= 4.1.3 - 2024-02-13 =
* Added - Compatibility of WordPress 6.4.3.
* Added - Modification of Suborder Creation #656.
* Added - Follow Vendor page revamped #654.
* Fix - User not able to view review in vendor list page #648.
* Fix - Notice Message in Vendor Dashboard #649.
* Updated - Language file.
= 4.1.2 - 2024-01-30 =
* Added - Compatibility of WooCommerce 8.5.2.
* Fix - The warning previously appearing on the WooCommerce shop page for the mvx vendor coupon widget has been resolved in our latest update.
* Fix - Responsiveness issue in the vendor shipping section for mobile view has been addressed with the necessary fix.
* Updated - We have adjusted the display of the Twitter icon on the vendor shop page to align with the latest specifications.
= 4.1.1 - 2024-01-17 =
* Added - Compatibility of WooCommerce 8.5.1.
* Fix - The RTL issue is fixed for the vendor store setup wizard
* Fix - There was an issue in the reviews page when a customer was trying to leave vendor feedback. Now in this version we have added a fix for that issue.
= 4.1.0 - 2024-01-15 =
* Added - Added HPOS (High-Performance Order Storage) support for MultiVendorX.
* Added - We have revised the content of the withdrawal email that is sent to the admin and vendor when the mode of payment is a bank transfer.
* Fix - Resolved the issue with store Info widget details not showing in the vendor page and review star icon missing for fontawsome.
* Fix - [REST API] Store Image and Store Banner can be updated for the endpoint http://dev.test/wp-json/mvx/v1/vendors.
* Dev - Added `mvx_order_item_quantity_text` filter.
* Updated - Language file.
= 4.0.32 - 2023-12-21 =
* Added - Compatibility of WordPress 6.4.2.
* Added - Compatibility of WooCommerce 8.4.0.
* Fix - There were issues in the vendor shipping option while configuring it from the admin dashboard. The CSS was not correct, the scrollbar was not working while in the add shipping method section. We have fixed those issue in our current update. Also added an option to get back to the previous page in the shipping section. #576
* Fix - There were lot of issues in the WPML module. The translation flags were not present in the vendor dashboard, the product url was not showing correctly. But in this new updated version we have fixed those.
* Fix - If we set vendor wise commission as 0 and set global commission then the vendor commission gets calculated on global commission. But if the vendor wise commission is set something other than 0 then the commission is calculated as per that. We have fixed this issue with vendor commission and the commission is getting calculated accordingly. #591
* Updated - Language file.
= 4.0.31 - 2023-11-28 =
* Added - Compatibility of WooCommerce 8.3.1.
* Fix - Earlier there were some grammatical mistakes in some default texts with some customer facing functions. That mistakes/errors have been rectified in this version. #582
* Fix - [vendor store policy] The vendor policies set by the admin from the backend were not getting synced with the policies set by the vendor from the vendor dashboard. Also those vendor policies set by the admin were not getting displayed on the vendor store page either. With this update the vendor policies set by admin and vendor are synced flawlessly and are also getting displayed on the vendor store page. #589.
* Fix - [Vendor addional email] There were two issues with the email setting in the vendor storefront. Firstly even after adding both the primary and additional email ids from the vendor dashboard, none of them were getting displayed on the vendor store page and also In the additional email field if we remove the email address and click save settings still that is not removed. #590.
* Updated - Language file.
= 4.0.30 - 2023-11-14 =
* Added - Compatibility of WordPress 6.4.1.
* Added - Compatibility of WooCommerce 8.2.2.
* Added - Banking overview csv #574.
* Fix - Issue in vendor edit product page #583.
* Fix - Issue in commissions details page in admin end #564.
* Updated - Language file.
= 4.0.29 - 2023-11-01 =
* Added - Compatibility of WordPress 6.3.2.
* Added - Compatibility of WooCommerce 8.2.1.
* Added - Vendor deactivation flow #553.
* Fix - Issue with viewing vendor application from admin mail #556.
* Fix - Related products not showing according to the settings in the backend #548.
* Updated - Language file.
= 4.0.28 - 2023-10-13 =
* Added - Compatibility of WooCommerce 8.2.0.
* Added - Add support for additional content in new vendor account mail #532.
* Fix - Withdrawal request to Admin from Vendor by BAC change #385.
* Fix - The policies set in the admin dashboard not displayed on vendor dashboard #540.
* Fix - Issue with withdrawal request for order status set #539.
* Fix - Allowed memory size exhausted issue #546.
* Dev - Added `mvx_task_board_bulk_action_triggers` action.
* Updated - Language file.
= 4.0.27 - 2023-09-26 =
* Added - Compatibility of WooCommerce 8.1.1.
* Added - Vendor application data download #475.
* Added - Add Select All button for selecting vendors on Announcement #515.
* Fix - All vendor products not showing on the page created with the MVX Vendor products shortcode #510.
* Fix - Icons for Rental pro and gift card module are missing #516.
* Fix - HTML void element in vendor sales report mail content #517.
* Fix - Add loading for Add shipping method in vendor shipping #523.
* Updated - Language file.
= 4.0.26 - 2023-09-12 =
* Fix - Recaptcha not working in vendor registration #488.
* Fix - Vulnerability Issue #505.
* Fix - Add Terms and condition checkbox #506.
* Fix - Bulk Action not working in the Workboard submenu #507.
* Updated - Language file.
= 4.0.25 - 2023-08-30 =
* Added - Compatibility of WordPress 6.3.1.
* Added - Compatibility of WooCommerce 8.0.3.
* Added - Shop page video play in loop.
* Fix - Footer in Vendor store page is not displaying correctly #472.
* Fix - "Message to Buyers" missing from mail and thank you page #477.
* Fix - CSv data is missing #480.
* Fix - React library update issues #484.
* Fix - Dashboard menu not working in mobile mode for RTL languages #489.
* Fix - Limit zone location for shipping zones are not getting saved #491.
* Fix - Vendor address displayed on vendor list page #486.
* Updated - Language file.
= 4.0.24 - 2023-08-08 =
* Fix - Checkbox flow in vendor registration #468.
* Fix - Vendor specific coupon added by admin not working #467.
* Fix - Vulnerability issue.
* Fix - Order status change option not working on vendor dashboard #465.
* Updated - Language file.
= 4.0.23 - 2023-07-25 =
* Added - Compatibility of WooCommerce 7.9.0.
* Added - Enhancement in the flow of deleting current vendor #443.
* Fix - Vendor logo issue #448.
* Fix - Issue with pinterest icon #450.
* Fix - DevTools failed load source map issue #452.
* Fix - Suborder and parent order status synchronization issue #453.
* Dev - Added `mvx_vendor_dash_after_order_itemmeta_table` action.
* Updated - Language file.
= 4.0.22 - 2023-07-13 =
* Added - Compatibility of WooCommerce 7.8.2.
* Added - Vendor Shop page fields selection #407.
* Fix - Approve/reject button not working #416.
* Fix - Delete button to delete vendor does not work #436.
* Fix - Issue with restore button in vendor dashboard #438.
* Dev - Added `mvx_product_type_option_edit` filter.
* Updated - Language file.
= 4.0.21 - 2023-06-27 =
* Added - Compatibility of WooCommerce 7.8.0.
* Fix - Profile image is not working #423.
* Fix - Refund Module not working #413.
* Updated - Language file.
= 4.0.20 - 2023-06-13 =
* Added - Compatibility of WooCommerce 7.7.2.
* Fix - Search vendors on their Profile name #256.
* Fix - Review js issue #404.
* Fix - Deprecated issue #397.
* Fix - Issue in plugin's CSS #396.
* Fix - Elementor Issue #403.
* Fix - MVX table rate error #398.
* Fix - Error #406.
* Updated - Language file.
= 4.0.19 - 2023-05-09 =
* Fix - Fatal error on the cart page.
= 4.0.18 - 2023-05-30 =
* Added - Compatibility of WordPress 6.2.2.
* Added - Compatibility of WooCommerce 7.7.1.
* Fix - Issue frontend for [mvx_vendorslist] shortcode #389.
* Fix - Issue in policies submenu in Vendor dashboard #386.
* Fix - Withdrawal request to Admin from Vendor by BAC change #385.
* Fix - Vlite jsin vendor shop page issue #382.
* Fix - Email right align issue #380.
* Fix - QnA flow improvement #378.
* Fix - Vendor Banner video #376.
* Fix - My Account page error #392.
* Updated - Language file.
= 4.0.17 - 2023-05-09 =
* Added - Compatibility of WooCommerce 7.6.1.
* Fix - Withdrawal mail trigger #372.
* Fix - Workboard blank screen #368.
* Fix - Customer details not visible on vendor dashboard #371.
* Fix - Issue with Pending transaction appoval #373.
* Updated - Language file.
= 4.0.16 - 2023-04-26 =
* Fix - Error while activating the plugin.
* Updated - Language file.
= 4.0.15 - 2023-04-21 =
* Fix - WPML error at frontend.
* Updated - Language file.
= 4.0.14 - 2023-04-18 =
* Added - Compatibility of WooCommerce 7.6.0.
* Added - Auto SKU Generator.
* Fix - Datepicker not working #353.
* Fix - Cart Page error #363
* Fix - WPML issue.
* Fix - Query optimization.
* Dev - Added `mvx_action_before_customer_refund_request` action.
* Dev - Added `mvx_action_after_customer_refund_request` action.
* Dev - Added `mvx_action_after_order_notes` action.
* Updated - Language file.
= 4.0.13 - 2023-04-04 =
* Added - Compatibility of WooCommerce 7.5.1.
* Added - Compatibility of WordPress 6.2.
* Added - All commission displayed by using a filter.
* Added - Users can choose their shop name on the vendor registration page.
* Fix - Attachment is not visible on the vendor registration section #348.
* Fix - Text update.
* Fix - Error at product page.
* Dev - Added `mvx_commission_list_args` filter.
* Updated - Language file.
= 4.0.12 - 2023-03-21 =
* Added - Compatibility of WooCommerce 7.5.0.
* Added - Registration form new field for store name #320.
* Added - Minimum Maximum quantity #307.
* Added - Followed Vendor Coupon mail #288
* Fix - Dashboard is not showing taxes, commissions, shipping not set up #337.
* Fix - Registration page store description error.
* Updated - Language file.
= 4.0.11 - 2023-03-07 =
* Added - Compatibility of WooCommerce 7.4.1.
* Fix - Policy issue #328.
* Fix - Vendor control panel does not work in mobile mode #327.
* Fix - Coupon Issues #331.
* Fix - Report Abuse not working #334.
* Fix - Error on vendor followed.
* Updated - Language file.
= 4.0.10 - 2023-02-22 =
* Fix - Vendor dashboard css broken.
* Updated - Language file.
= 4.0.9 - 2023-02-21 =
* Added - Compatibility of WooCommerce 7.4.0.
* Added - Let Vendor Add Slider and Video for shop page #282
* Fix - Registration Form Description not getting displayed #316.
* Fix - Multiple Vendor Notice At Cart and Checkout Page #315.
* Dev - Added `mvx_analytics_tabs_datas` filter.
* Dev - Added `mvx_report_analytics_strings` filter.
* Updated - Language file.
= 4.0.8 - 2023-02-06 =
* Added - New Follower menue for vendors.
* Fix - Username is disabled for edit vendor profile.
* Updated - Language file.
= 4.0.7 - 2023-01-17 =
* Added - Compatibility of WooCommerce 7.3.0.
* Added - Widget support with Gutenberg Blocks.
* Enhancement - SPMV flow enhancement.
* Enhancement - Refund tab for vendor.
* Fix - GTIN Fields Issue #285.
* Fix - Error on backend payment tab.
* Fix - Razorpay plugin inactive issue.
* Fix - Buddypress deprecated filter update.
* Updated - Language file.
= 4.0.6 - 2023-01-03 =
* Added - Compatibility of WooCommerce 7.2.2.
* Fix - GTIN Fields Issue #285.
* Fix - Settings not saving when wpml active #284.
* Fix - Admin not able to delete order using "Empty Trash" #277.
* Fix - Workboard section pending vendor edit link issue.
* Fix - Registration page section not working #276.
* Fix - Admin not able to upload vendor logo #278.
* Updated - Language file.
= 4.0.5 - 2022-12-20 =
* Added - Compatibility of WooCommerce 7.2.0
* Fix - Buddypress settings not working #264
* Fix - Password reset issue #263.
* Fix - Error on navigation menu #268
* Fix - Customer Refund status box is missing #267
* Fix - Shipping by distance link #265
* Updated - Language file.
= 4.0.4 - 2022-12-06 =
* Fix - Error at the time of accessing products.
* Fix - Text rename.
* Fix - Virtual, downloadable option not working.
* Fix - Table rate enabled issue.
* Fix - Commission on tax.
* Fix - Show shipping methods added by vendors to admin.
* Fix - Complete store front migration from other multivendor plugins.
* Updated - Language file.
= 4.0.3 - 2022-11-22 =
* Added - Compatibility of WordPress 6.1.1
* Added - Compatibility of WooCommerce 7.1.0
* Added - New data added on commission CSV.
* Fix - Related Product not working.
* Fix - Email template override folder issue.
* Updated - Language file.
= 4.0.2 - 2022-11-08 =
* Added - Compatibility of WordPress 6.1.
* Added - Compatibility of WooCommerce 7.0.1.
* Added - Let admin delete questions.
* Added - TinyMCE support.
* Added - Date section on commission list page.
* Fix - Question and Answer endpoint show a 404 error.
* Fix - Mark as reading button is not working.
* Fix - Let admin add images or style for announcement and knowledgebase.
* Fix - String update.
* Fix - The vendor list page pending option show nulled.
* Dev - Added `mvx_commissions_table_columns_data` filter.
* Updated - Language file.
= 4.0.1 - 2022-10-24 =
* Added - Compatibility of WordPress 6.0.3.
* Added - Pending refund on workboard section.
* Added - Workboard and Commission manu page pending count.
* Added - Let admin delete commission from commission list page.
* Fix - Error on admin backend.
* Fix - Bulk CSV download option on commission list page is giving blank.
* Fix - Extra field is showing for product-wise commission.
* Fix - Vendor Dashboard custom css not working.
* Updated - Language file.
= 4.0.0 - 2022-10-18 =
* Added - Compatibility of WooCommerce 7.0.0.
* Added - MultiVendorX released.
* Updated - Language file.
= 3.9.3 - 2022-09-29 =
* Added - Compatibility of WooCommerce 6.9.4
* Added - Pinterest social field support with elementor added.
* Updated - Language file.
= 3.9.2 - 2022-09-13 =
* Added - Compatibility of WordPress 6.0.2
* Added - Pinterest social field added.
* Updated - Language file.
= 3.9.1 - 2022-08-26 =
* Fix - MultiVendorX beta notice closing issue.
= 3.9.0 - 2022-08-24 =
* Added - Compatibility of WooCommerce 6.8.2.
* Added - MultiVendorX beta version released.
* Fix - Backend vendor attach with the product #1105.
* Updated - Language file.
= 3.8.12 - 2022-08-10 =
* Added - Compatibility of WooCommerce 6.8.0.
* Fix - Translation Issue #1101.
* Fix - Vulnerability Issue #1098.
* Updated - Language file.
= 3.8.11.8 - 2022-07-26 =
* Added - Percentage and fixed per unit support with gateway charge type.
* Fix - An error doesn't display if a username exists on vendor creation.
* Updated - Language file.
= 3.8.11.7 - 2022-07-13 =
* Added - Compatibility of WordPress 6.0.1
* Added - Compatibility of WooCommerce 6.7.0.
* Added - Location track button in list page #1080
* Enhancement - Regenerate Vendor Commission flow #1096
* Updated - Language file.
= 3.8.11.6 - 2022-06-30 =
* Added - Compatibility of WooCommerce 6.6.1.
* Added - Transaction details added on customer my account order page #931
* Enhancement - Taxonomy upgrade.
* Fix - Repeat Subscription Not Assigned to Vendor.
* Fix - Vendor dashboard widget design broken for a few sites.
* Fix - Error on product page #1094.
* Updated - Language file.
= 3.8.11.5 - 2022-06-08 =
* Fix - Vendor not able to publish products #1092.
* Fix - Vendor Backend Report #1090.
* Fix - Product Quote Issue #1091.
* Updated - Language file.
= 3.8.11.4 - 2022-05-27 =
* Added - Compatibility of WordPress 6.0.
* Added - Compatibility of WooCommerce 6.5.1.
* Fix - Re-edited product publish issue #1084.
* Fix - When logged he’s redirected to the vendor dashboard, whereas he should remain in the checkout page #1087.
* Enhancement - Grunt version updated.
* Enhancement - Contact Vendor Mail add product name #1085.
* Enhancement - Stop creating sub order for failed order #1086.
* Dev - Added `woocomerce_checkout_page_name_from_url` filter.
* Dev - Added `mvx_create_order_commissions_as_per_statuses` filter.
* Updated - Language file.
= 3.8.11.3 - 2022-05-12 =
* Added - Compatibility of WooCommerce 6.5.0.
* Dev - Added `mvx_after_vendor_ship_save` action.
* Enhancement - Grunt version updated.
* Updated - Language file.
= 3.8.11.2 - 2022-04-12 =
* Fix - Recapta issue #1072.
* Fix - Limit zone saved issue #1067.
* Fix - WPML Error #1068.
* Fix - Load more not working #1070.
* Fix - Error at backend #1075.
* Fix - Order Export omitting orders with deleted products #1043.
* Dev - Added `mvx_order_export_if_product_exist` filter.
* Updated - Language file.
= 3.8.11.1 - 2022-03-24 =
* Fix - Error if elementor pro is deactive.
* Updated - Language file.
= 3.8.11 - 2022-03-23 =
* Added - Compatibility of WordPress 5.9.2.
* Added - Compatibility of WooCommerce 6.3.1.
* Enhancement - Elementor filter update #1061.
* Added - Create Sub order via bulk action.
* Fix - Refund creating two notes #1064.
* Fix - Issue at the time of full refund #1065.
* Fix - Page title error #1058.
* Fix - Recaptcha version 2 not working #1053.
* Updated - Language file.
= 3.8.10 - 2022-03-02 =
* Added - Compatibility of WordPress 5.9.1.
* Added - Compatibility of WooCommerce 6.2.1.
* Fix - Report filter not working #1049.
* Fix - Error in action section of orders in Vendor Dashboard #1049.
* Updated - Language file.
= 3.8.9 - 2022-02-16 =
* Added - Compatibility of WooCommerce 6.2.0.
* Fix - Search SPMV product more than 10 #1020.
* Fix - Error on add product page #1040.
* Fix - Cancel Email stop for Vendor new order #1044.
* Fix - Updated slug issue #1038.
* Fix - Missing strings in .pot file #1032.
* Fix - Shipping option should not be there in vendor dashboard for local pickup #1026.
* Fix - MVX Email Footer text not changing #1025.
* Fix - Stripe connect account bug.
* Fix - Elementor code update.
* Dev - Added `mvx_spmv_list_product_search_number` filter.
* Updated - Language file.
= 3.8.8 - 2022-01-29 =
* Added - Compatibility of WordPress 5.9.
* Added - Compatibility of WooCommerce 6.1.1.
* Fix - Update commission flow #1031.
* Fix - Multi time mail issue #1035.
* Updated - Language file.
= 3.8.7 - 2022-01-20 =
* Added - Compatibility of WooCommerce 6.1.0.
* Added - Compatibility of WordPress 5.8.3.
* Enhancement - Commission flow enhancement.
* Fix - Products in vendor list page not updating even after deleting #1028.
* Fix - Address not shown in vendor list page #1023.
* Fix - Email template subject issue #1022.
* Dev - Added `mvx_admin_published_product_to_vendor_email_subject` filter.
* Dev - Added `mvx_vendor_top_product_list_suffle` filter.
* Updated - Language file.
= 3.8.6 - 2022-01-05 =
* Added - Compatibility of WooCommerce 6.0.0.
* Fix - Table rate shipping not saving decimal value #993.
* Fix - Vendor setup widget site title broken #994.
* Fix - Admin order list page php notice issue on suborder column #998.
* Fix - Announcement email HTML formatting issue #996.
* Fix - Vendor name display in announcement email #1006.
* Fix - Coupon display issue #1004.
* Dev - Added `mvx_widget_vendor_product_sales_report_line_items` filter.
* Updated - Language file.
= 3.8.5 - 2021-12-15 =
* Added - Bulk Mark as Shipped #786.
* Added - Order search in vendor dashboard #692.
* Updated - Language file.
= 3.8.4 - 2021-11-30 =
* Added - Compatibility of WooCommerce 5.9.0.
* Added - Compatibility of WordPress 5.8.2.
* Added - Let admin set location of the vendor #972.
* Added - Vendor shipping option re-arranging and making default #980.
* Added - Video Upload on wp editor #933.
* Added - Filter added for vendor's product image size #984.
* Enhancement - Modify the approval needs to publish re-edited product #977.
* Fix - Social media icons of vendor store page not inappropriate position #983.
* Fix - To-do list dismiss note issue #982.
* Fix - WordPress structure #966.
* Dev - Added `mvx_product_uploaded_image_size` filter.
* Updated - Language file.
= 3.8.3 - 2021-11-09 =
* Added - Compatibility of WooCommerce 5.8.0.
* Enhancement - Display Announcement Content #971.
* Enhancement - Filter added for calcuating gateway charge after refund amount.
* Fix - Product review sync issue.
* Fix - Follow button not working for other languages.
* Fix - Commission issue after refund #976.
* Fix - Downloadable product save issue #975.
* Fix - Vendor setup widget css broken #968.
* Fix - Email error #978.
* Fix - Error at myaccount view order page.
* Fix - Do not automatically refund parent order filter added.
* Fix - Bulk vendor delete not working #981.
* Updated - Language file.
= 3.8.2 - 2021-11-10 =
* Added - Compatibility of WooCommerce 5.7.1.
* Fix - Commission for deleted order not getting delete #960.
* Fix - Review not showing for non-login user #958.
* Fix - Issue with "Admin created coupon excluded" option of coupon. #957.
* Fix - “Hide phone in front end” and “Hide email in front end” not working with elementor #955.
* Fix - Add coupon issue for follow vendor #954.
* Fix - Gateway Calculation charge #952.
* Fix - Conflict with siteground hosting server.
* Updated - Language file.
= 3.8.1 - 2021-10-20 =
* Added - Compatibility of WordPress 5.8.1.
* Enhancement - Admin coupon application for share discount coupon #941.
* Fix - Recalculate Gateway Charge #945.
* Fix - Table Rate plugin error #943.
* Fix - Order Discount display in sub order. #940.
* Fix - Error from distance wise shipping.
* Fix - To-do list problem #950
* Updated - Language file.
= 3.8.0 - 2021-09-01 =
* Added - Compatibility of WooCommerce 5.6.0.
* Added - Multi section Review System #871.
* Added - Product and vendor review sync #751.
* Added - Country wise shipping.
* Added - Purchase wise commission.
* Added - Automatic Split Payment detection #938.
* Added - New Commission %+fixed per vendor #934.
* Added - Mapbox zoom in and zoom out feature #929.
* Added - Nested multi-input library.
* Fix - Product and Coupon data is removing at the time of publishing product error #927.
* Fix - Transaction email Html issue #937.
* Fix - Transaction email amount is not showing as per woocommerce setting.
* Fix - Sub Orders Not creating from backend created orders #932.
* Fix - Order notes structure display #939.
* Dev - Added `mvx_marketplace_settings_fields_review` filter.
* Dev - Added `mvx_admin_js_localize_script` filter.
* Dev - Added `mvx_vendors_product_review_args_array` filter.
* Dev - Added `mvx_vendors_product_review_args_to_fetch` filter.
* Dev - Added `mvx_vendors_product_review_info_args` filter.
* Dev - Added `mvx_is_start_with_full_rating` filter.
* Dev - Added `mvx_is_allow_store_shipping` filter.
* Dev - Added `hide_country_shiping_default_zero_cost` filter.
* Dev - Added `mvx_is_apply_tax_on_shipping_rates` filter.
* Dev - Added `mvx_local_pickup_shipping_option_label` filter.
* Dev - Added `mvx_free_shipping_minimum_order_amount` filter.
* Dev - Added `mvx_free_shipping_threshold_consider_tax` filter.
* Dev - Added `mvx_shipping_country_calculate_amount` filter.
* Dev - Added `mvx_shipping_country_calculate_amount` filter.
* Dev - Added `mvx_settings_fields_shipping_by_country` filter.
* Dev - Added `mvx_settings_fields_shipping_rates_by_country` filter.
* Dev - Added `mvx_quantity_wise_commission_amount_modify` filter.
* Updated - Language file.
= 3.7.8 - 2021-08-04 =
* Added - Compatibility of WooCommerce 5.5.2.
* Added - Added filter for third party logo modification #920.
* Fix - Error from new order plain mail #922.
* Fix - spelling mistake on the shipping page #921.
* Fix - Parameter mismatch with the third party plugin #919.
* Fix - Stock status code issue at vendor dashboard #918.
* Fix - Suborder search issue #917.
* Updated - Language file.
= 3.7.7 - 2021-07-22 =
* Added - Compatibility of WordPress 5.8.
* Added - Compatibility of WooCommerce 5.5.1.
* Added - Create a new section for vendor shipping #909.
* Added - Update description #908.
* Added - Suborder creation via backend #903.
* Fix - Backend search not working #901.
* Fix - Policy tab display at the shop when admin disable it.
* Updated - Language file.
= 3.7.6 - 2021-07-06 =
* Added - Distance wise shipping #872.
* Added - Checkout delivery location through google and mapbox map.
* Added - Table rate shipping migration.
* Added - Stripe description added #879.
* Added - Commission search by id #888.
* Added - Vendor can change order status as per settings #883.
* Enhancement - Admin gets mail when vendor add coupon #891.
* Added - Added a new class for the third party modification #887.
* Fix - Query monitor found an issue #878.
* Fix - Shop manager sub order view issue #877.
* Fix - Product policy text styling changed #874.
* Fix - Hook filter conflict with the third party plugin #880.
* Fix - Coupon expiry date design break #895.
* Fix - Coupon not reflecting in the shipping mail sent to the customers #893.
* Fix - Ledger table error.
* Fix - MVX shipping error with PHP 8.0.6.
* Dev - Added `mvx_stripe_description_at_paid_time` filter.
* Dev - Added `mvx_is_allow_checkout_user_location` filter.
* Dev - Added `mvx_map_icon_width` filter.
* Dev - Added `mvx_map_icon_height` filter.
* Dev - Added `mvx_is_allow_store_shipping` filter.
* Dev - Added `mvx_is_apply_tax_on_shipping_rates` filter.
* Dev - Added `mvx_local_pickup_shipping_option_label` filter.
* Dev - Added `mvx_free_shipping_threshold_consider_tax` filter.
* Dev - Added `mvx_shipping_distance_calculate_amount` filter.
* Dev - Added `mvx_is_allow_hide_admin_shipping_for_vendor_shipping` filter.
* Dev - Added `mvx_is_allow_admin_shipping_if_no_vendor_shipping` filter.
* Dev - Added `mvx_settings_fields_shipping_rates_by_distance` filter.
* Dev - Added `mvx_vendor_shipping_option_to_vendor` filter.
* Updated - Language file.
= 3.7.5 - 2021-06-15 =
* Added - Commission by product price #870.
* Added - LinkedIn & Instagram support with elementor.
* Added - Let admin decide whether the vendor can change the order status #777.
* Added - Admin can set order status for withdrawal #777.
* Added - Compatibility of WooCommerce 5.4.1.
* Enhancement - Shipping module enhancement #865.
* Fix - First product missing from elementor page #866.
* Fix - Pagination not working in the payment history page #864.
* Fix - Rejected vendor issue #860.
* Fix - Update Razorpay link #862.
* Fix - Checking issue #861.
* Fix - Free shipping coupon missing #846.
* Dev - Added `mvx_elementor_vendor_product_page` filter.
* Dev - Added `withdrawl_order_status` filter.
* Dev - Added `mvx_menu_manager_fields` filter.
* Updated - Language file.
= 3.7.4 - 2021-05-25 =
* Added - Mapbox API integration #780.
* Added - Tooltip description support on vendor registration from #787.
* Added - Let admin decide whether a published product needs admin's approval for each edit #799.
* Added - Compatibility of WordPress 5.7.2.
* Enhancement - Weight display even if shipping disabled #850.
* Enhancement - Store description support with elementor page #855.
* Enhancement - Shop page name can be removed by filter #851.
* Enhancement - Grunt version updated.
* Fix - Sql error.
* Dev - Added `mvx_disabled_product_shipping_tab` filter.
* Dev - Added `mvx_mapbox_map_style_switcher` filter.
* Dev - Added `mvx_dashboard_location_widget_map_style` filter.
* Dev - Added `mvx_show_page_title` filter.
* Updated - Language file.
= 3.7.3 - 2021-05-11 =
* Added - Razor pay payment gateway integration.
* Added - Order search for refund request #822.
* Added - Older version review link compatibility with filter #835.
* Enhancement - Shipping settings enhancement #843.
* Enhancement - Grunt version updated.
* Fix - Admin end gateway charge section js issue #845.
* Fix - Display output modification on the shop page #833.
* Fix - Woocommerce order count display issue #831.
* Fix - Mobile view issue at the shop page #829.
* Fix - Increase the size of social icons on the shop page #827.
* Fix - Vendor shop page endpoints are not working when vendor nickname and shop slug are different #826.
* Fix - Error at checkout page #830.
* Fix - Added filter for create commission with coupon #828.
* Dev - Added `mvx_admin_pay_commission_more_than_order_amount` filter.
* Updated - Language file.
= 3.7.2 - 2021-04-27 =
* Added - Vendor mail when order status changed by admin #802.
* Added - Sales report mail as per custom date selected by admin #782.
* Added - MVX Sidebar help #814.
* Fix - Vendor quick view widget is not working #823.
* Fix - Todo list number count issue #819.
* Fix - Vendor 404 page not working #818.
* Fix - Mobile view issue at shop page #816.
* Fix - Customer Q&A not wokring on Russian Language #813.
* Fix - Stock table is empty at dashboard product page #812.
* Fix - To-do list page icon not working #807.
* Fix - String issue at dashboard shipping page #778.
* Fix - Error at admin section setup widget page.
* Dev - Added `custom_date_order_stat_report_mail` filter.
* Dev - Added `mvx_enabled_vendor_monthly_report_mail` filter.
* Dev - Added `custom_date_order_stat_report_mail` filter.
* Updated - Language file.
= 3.7.1 - 2021-04-09 =
* Added - Vendor shop page old structure support along with new structure.
* Added - Language French compatibility #794.
* Added - Shop page tabs position can be changed by using priority.
* Added - Store description support with Elementor #801.
* Added - Compatibility of PHP 8.0.3.
* Enhancement - Keep the vendor sidebar option enabled by default.
* Enhancement - Create a follow user list at the admin backend.
* Fix - Vendor list page icon issue.
* Fix - Vendor not able to see store wizard setup after registering #795.
* Fix - Edit/delete buttons of shipping modes are not working in the vendor dashboard #796.
* Fix - Enable review tab in the vendor dashboard is not working properly #798.
* Fix - Vendor review cannot be removed from MVX settings #805.
* Fix - Store description missing from store banner.
* Fix - Shop page email hide filter not working.
* Dev - Added `mvx_load_default_vendor_store` filter.
* Updated - Language file.
= 3.7.0 - 2021-03-30 =
* Added - MVX Store Follow.
* Added - Elementor support with MVX vendor shop page.
* Added - Migration support from other multivendors( Dokan, wcfm, wc vendors, woocommerce product vendor ).
* Added - Brand new vendor list design.
* Added - Compatibility of WordPress 5.7.
* Fix - Bulk product action not working in vendor dashboard #775.
* Fix - Shipping title is missing #763.
* Fix - SQL syntax issue #760.
* Fix - Purchase note of the product is not saving #757.
* Fix - List all orders by vendor returns empty Array #750.
* Fix - Vendors when try to edit downloadable products they are not able to see the downloadable files #749.
* Fix - Vendor storefront, policy page, store description editor breaking in mobile view #746.
* Fix - Order Status Bulk Change not working #742.
* Fix - sale price date javascript issue #739.
* Fix - Suborder remove from woocommerce orders rest API.
* Fix - Text correction at vendor dashboard.
* Fix - Vendor dashboard responsive issue.
* Fix - Vendor Coupon Widget bug #771.
* Fix - save shipping class value #740.
* Dev - Added `mvx_load_default_vendor_list` filter.
* Dev - Added `mvx_break_loop_offset` filter.
* Dev - Added `mvx_elementor_social_network_map` filter.
* Dev - Added `mvx_elementor_store_data_defaults` filter.