forked from sovware/directorist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme.txt
1983 lines (1598 loc) · 91.3 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
=== Directorist - WordPress Business Directory Plugin with Classified Ads Listings ===
Contributors: wpwax
Donate link: https://directorist.com/extensions/
Tags: member directory, listing, classifieds, directory plugin, business directory
Requires at least: 4.6
Tested up to: 6.0
Requires PHP: 7.0
Stable tag: 7.4.2.1
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
The Best WordPress Directory Plugin to Create Business Directory, Job Listings, Classified Ads, Booking Directory, Local Directory, Service Directory
== Description ==
[Try Admin Demo](https://userdemo.wpwax.com/directorist/) | [Demos](https://directorist.com/demos/) | [Docs](https://directorist.com/documentation/directorist/) | [Themes](https://directorist.com/themes/) | [Extensions](https://directorist.com/extensions/) | [Roadmap](https://directorist.com/roadmap/)
Want to build an online directory of business listings similar to Yelp, Yellow-Pages, or Tripadvisor on your WordPress site? If the answer is YES, you have come to the right place. Directorist Business Directory Plugin simplifies the process of creating powerful business directories or classified websites of any kind.
[youtube https://www.youtube.com/watch?v=28gUzfsGmuk]
The possibilities of a directory site are endless. You can use it as an income stream, a community service, a platform for others to keep their businesses running, to elevate existing business, and whatnot. Thousands have already started their journey, what’s stopping you? Try it, you will love it.
🎉 Use [Best Listing](https://wordpress.org/themes/best-listing/) FREE multi-purpose directory theme for a quick start.
== THE ONLY WORDPRESS BUSINESS DIRECTORY PLUGIN YOU NEED ==
Meet our powerful Directorist Business Directory plugin, highly optimized that can scale to millions of listings ensuring the most dynamic experience of managing online directory business. Using Directorist, you can create lists of directories based on the location, category, and other interests without writing a single line of code.
🔥🔥🔥 **Directorist Mobile App for Android & iOS** 🔥🔥🔥
If you want to make your directory website better accessible, highly interactive, and turn your visitors into paying customers, the Directorist mobile app is the one to take you to the rescue!
📱 [Launch Your Mobile App Now](https://directorist.com/mobile-app/)
== TYPES OF WEBSITES YOU CAN BUILD ==
Using Directorist Business Directory plugin you can create classifieds websites and listing directories like a local business directory, car directory, booking directory, land selling directory, classified ads, team directory, job portal, directory portal, staff directory, medical directory, doctor directory, address book, review sites, restaurant directory, real estate, and many more!
👉 Join Our FB Community : [Directorist Community](https://www.facebook.com/groups/directorist)
👉 Official Facebook Page : [Like and Follow on Facebook](https://www.facebook.com/directorist)
👉 Official Twitter Handle : [Follow on Twitter](https://twitter.com/wpdirectorist)
👉 Official YouTube Channel : [Follow on YouTube](https://www.youtube.com/c/wpWax)
👉 Official Support : [Contact](https://directorist.com/dashboard/)
Directorist Business Directory & Classified Listings is one of the leading and fast-growing business directory plugins in WordPress. It is fully compatible with popular WordPress themes that allow you to transform your existing website into a personalized business directory with tons of advanced features and functionalities.
[youtube https://www.youtube.com/watch?v=iPZFpAqS7Ok]
== Here’s What Users Say about Directorist - WordPress Business Directory Plugin with Classified Ads Listings ==
>👨 __Simply the BEST directory plugin__
>10 stars – no joke.
>I tried several plugins, including paid ones on that canyon costing over 60 bucks, they did not satisfy at all. Directorist is super customizable, the devs are really helpful and the prices or their extensions are very reasonable. Would recommend it to anyone who is looking for a directory plugin. Even without paid upgrades, it’s a true beast!
- By @collin43
>💁 __Perfect for our project!__
>This free plugin does what Classifieds premium themes don’t. It is very well thought out and personalized. I needed support and had a service note 10.
- By @barenco
>👨 __Amazing Plugin and Excellent Support__
>The best ad plugin I have used. The simplicity and fluidity of use allow you to improve the user experience. Excellent support, I had a lot of questions and a lot of problems but the support was always by my side.
- By @wadi2a
== DIRECTORIST REVIEW BY EXPERTS ==
[youtube https://www.youtube.com/watch?v=XnC9Lyw9w2k]
[youtube https://www.youtube.com/watch?v=QTjmwhekF7s]
== WHY SHOULD YOU USE DIRECTORIST - THE BUSINESS DIRECTORY PLUGIN? ==
👉 **Multi Directory:** Boost your business directory possibilities by creating multiple directory types within the same directory. Add different sets of functionalities for each directory type and start managing them on the same website.
👉 **Custom Form and Layout Builder:** Directorist form and layout builder allows you to build custom add listing and search form using drag and drop technology. Besides, you will also be able to design your “All listing” card and "Single Listing" page layout using the builder. Just drag and drop the items you want to show and give the directory a personalized appearance.
👉 **Listing CSV Import/Export with Custom Field:** The new Directorist allows you to import listings with custom fields from the CSV file for no cost. Listing import and migrating to Directorist from another directory plugin is more effective now. Moreover, CSV export has also been added therefore domain switching, exporting to local is no longer a big deal!
👉 **Beginner Friendly:** Thoughtfully designed user interface lets users operate the plugin with zero coding skills and get the most compelling user experience. This beginner-friendly plugin provides you a simple setup wizard to get you started.
👉 **Monetize and Earn:** Expand your business with our amazing monetization features that allow you to create an additional income stream and generate unlimited revenue flow.
👉 **Highly Extensible and Customizable:** Enhance the functionalities of your directory site with robust extensions and customize using the most popular page builder— Elementor.
👉 **Booking System*:** Develop a service or event-oriented booking directory with scheduling functionality to hoist the possibilities of your directory business. e.g. Restaurant Reservation, Saloon Booking, Doctor appointments, Lawyers & Consultancy Firm).
👉 **Live Chat*:** Integrate a private messaging system on your directory listing website that allows users to have a real-time private conversation with business owners.
👉 **Gutenberg Blocks:** Directorist offers 16 blocks/widgets for the Gutenberg editor, which is the default visual interface for editing WordPress posts and pages. Now, using Gutenberg, you can create and edit Directorist template pages like the add listing, all listing, search home, all locations, all categories, and many others.
Let’s take a look at some of the core features that make this WordPress directory plugin exclusive from others available in the market:
== CORE DIRECTORIST FEATURES AT A GLANCE ==
* Compatible with all themes including popular ones such as Avada, Divi, Astra, and OceanWP.
* CSV Import/Export (listing, category, location, tag, media, etc.).
* Highly optimized and rocket-fast performance to ensure scalability.
* 25+ Elementor Page Builder widgets.
* Gutenberg support and 16 Gutenberg blocks.
* Advanced search filters to narrow down and yield accurate search results and with the addition of custom fields filter, elevate the search experience to a greater level.
* Front-end and Back-end listing submission.
* Front-end user dashboard to manage listings.
* Open Street Map and Google Map Integration.
* Unlimited custom fields to accommodate custom requirements on the listing form.
* 100% responsive and modern-day design.
* WooCommerce multi-vendor plugin compatible [Exclusive].
* Built-in SEO optimization system as well as Yoast SEO compatibility.
* Personalize the directory using a wide range of shortcodes.
* GDPR compliant.
* Ajax-powered listing and review submission.
* Listing owner contact form.
* Bulk or individual user announcement
* Listing image slider.
* Listing and Review submission without login (Guest Submission).
* Listing reviews and ratings.
* Display business hours, FAQs, image gallery, carousel & slider, Google reCAPTCHA for a listing using paid extensions.
* Custom sidebar for single listing page.
* Custom user Registration and Login.
* New, Popular, Featured, and Open/Close badges.
* Create an Unlimited listing based on location and category.
* List and grid view for categories, locations, and listings pages.
* Translate to any language effortlessly using Loco Translate plugin.
* Sustainable for long-term use.
* Updated regularly for flawless operation.
* And many more!
== Scale to Millions of Listings and Blazing Fast Experience ==
There is no doubt that a fast-loading web page is crucial for a better user experience and search engine. Keeping that into account **Directorist Business Directory** plugin is built with industry-standard practices to provide you with a lightning-fast loading experience. It is a highly optimized plugin that can scale to millions of listings ensuring low memory consumption and efficient query execution.
== Beautiful Modern Design and 100% Responsive ==
Integrate Directorist Business Directory & Classified Listings with your existing theme and turn it into a personalized business directory or classifieds website using a wide range of functionalities. Directorist boasts modern-day designs with 3 types of view that include — grid, list, and map view. Integrate with popular themes like Astra, Avada, Divi, etc., and start your Business Directory right away with trending designs.
== Easy Translation, RTL & Built-in SEO Solution ==
Translate your business directory or classifieds website to any language effortlessly using the Loco Translate plugin that provides in-browser editing of the translation files and get your directory listing website optimized for SEO.
👉 **Multilingual Facility:** Directory listing websites created by Directorist Business Directory are 100% translatable and can be translated into multiple languages.
👉 **Built-in SEO:** Directorist Business Directory plugin lets you set custom meta titles and descriptions on every directory page. It is also compatible with the Yoast SEO plugin.
👉 **RTL (Right to Left):** Directorist Business Directory plugin is fully compatible with RTL languages like Arabic, Aramaic, Hebrew, etc.
== Powerful Ajax Powered Instant Search and Advanced Filters ==
The Directorist Business Directory & Classified Listings advanced filter lets your users search listings based on numerous criteria like custom fields, tags, price range, etc. along with default text field, category, and location fields to elevate the search experience to a greater level.
* Filtering using numerous fields to yield accurate results.
* Geolocation and nearby listings.
* Radius search based on address and zip.
* Use custom fields as search filters.
* Search widgets with 14 different filters.
* Highly customizable filters for each type.
== CSV Import/Export ==
Get a compelling user-friendly system that simplifies the migration process by letting you import thousands of listings from a CSV file. Directorist Business Directory CSV Tool is painstakingly developed to corroborate a smoother migration process.
* Complete migration to Directorist Business Directory in just a few clicks.
* Import thousands of listings or more in no time.
* Map any field types to Directory listing fields.
== Unlimited Custom Fields ==
Add unlimited custom fields to accommodate custom requirements on the listing form also, you can use custom fields as search filters to get the best search results. You can add fields like select, file, URL, radio, checkbox, and many more
* Create unlimited custom fields for the listing form.
* Create custom fields by choosing from 11 different field types.
* Search using custom fields for accurate search results.
== Extensive Monetization Facility ==
Directorist Business Directory & Classified Listings allows you to monetize your business directory website in various ways. Let’s take a look at them:
👉 **Featured Listing:** Earn money by featuring each of the listings of your site users according to their purchase. In this process, you make listings featured and promote them that are displayed at the top of the listing page.
👉 **Paid Listing*:** Get paid for each listing your users submit! You can create unlimited pricing plans by providing different sets of values to get paid by listing the submissions. To make it happen requires a cost-effective premium extension.
👉 **Claim Listing*:** Make money by allowing business owners to claim their listing and get verified.
👉 **Pay Per Submit*:** Earn by charging users to create a listing on your site.
>*Requires Additional Purchase
== Frontend Listing Submission and Listing Management ==
Directorist Business Directory & Classified Listings allows users to submit and manage listings from the front end of the site without having to log in to the admin panel. Directorist provides a smart frontend Dashboard system for users to manage their listings, change plans, change passwords etc. without accessing the admin panel.
* Add listings using the frontend listing form.
* Renew/Change plan from the frontend.
* Intuitive user dashboard for managing the listings.
* Maintain business without accessing the admin panel
== Multiple Mapping Source ==
Location or address search is an important aspect of a business directory and classified ads site. Directorist Business Directory provides a flexible mapping source offering Google Maps and OpenStreetMap to help users to find their desired service.
👉 **Google Maps:** Use the most popular and versatile mapping platform for free with limited quota provided by Google.
👉 **OpenStreetMap:** A free easy-to-use mapping platform to display location and use map features without the need for Map API.
== Robust Payment Gateways ==
More options for getting paid means more ways to earn revenue. By default, **Directorist Business Directory** allows you to use an offline payment method for free. You can set up a bank transfer method as an offline payment gateway using the free version.
If you want to scale up your payment gateway using an online payment method, and you can use [PayPal](https://directorist.com/product/directorist-paypal/) , [Stripe](https://directorist.com/product/directorist-stripe/) or [Authorize.Net](https://directorist.com/product/directorist-authorize-net/) by purchasing cost-effective extensions. In addition to this, using this WordPress directory plugin taxes and recurring options can be added into your online payment system respectively.
== Easy to Use and Highly Customizable ==
Make a powerful and beautiful business directory or classifieds website with the most user-friendly business directory plugin. Anyone can turn his/his website into a powerful and professional directory website with this plugin without having any programming skill.
* Design your directory site using 25+ Elementor widgets.
* Personalize using a wide range of shortcodes and parameters.
* Numerous widgets can be added:
* Author info
* Search listing
* Popular listing
* Featured listing
* Similar listing
* Map
* And many more
* Site owner can customize the email templates as it’s needed and many more.
== Developer Friendly ==
🎉 **Templating:** Directorist offers a robust templating system that allows you to override all the Directorist default template files without amending any of the plugin codes.
WordPress developers can extend the plugin functionalities infinitely using available hooks and filters.
== Constructed with Clean Code ==
We prioritize quality over quantity and the whole system is constructed with clean codes.
== Action and Filter Hooks ==
Directorist Business Directory provides a vast array of action and filter hooks so that the developers can customize the plugin according to their needs.
== Easy Review Management ==
Directorist Business Directory provides a smart way to manage reviews for all the listings. As a site owner, you can allow or disallow a listing submitter to review his own listing. You will also get an option for instance review approval or keeping it pending if reviewers give reviews.
== Incredible Support ==
Our dedicated support team always loves to get queries from our users and they are quite good at serving our users’ purposes. As we care user’s needs, like the previous days, as always, our users will get premium support in the coming days.
== Build by a Dynamic Team & Backed by a Wonderful Company ==
We aim to provide you with the best professional business directory plugin. Our team is full of dedicated developers, designers, support engineers and marketers who spent countless hours to make this plugin the most convenient to its users. We’re constantly working to improve the plugin by adding new features and fixing the bugs in the best possible way.
Getting Started with the **Directorist Business Directory** is only a matter of a few clicks. Check out the [detailed guide through our documentation](https://directorist.com/documentation/) on our official website in order to operate the plugin in the best possible way.
== Extensions ==
Directorist Business Directory offers cost-effective premium [Extensions](https://directorist.com/extensions/) to extend the functionalities of your directory listing website.
👉 **[Pricing Plans](https://directorist.com/product/directorist-pricing-plans/)** - This feature extension allows you to create unlimited pricing plans with no time. In addition to this you can add different sets of features including private plans for specific users that can keep hidden from the rest of users. You also can set up recurring payments to your system which enhances your pricing plans on your directory listing website.
👉 **[WooCommerce Pricing Plans](https://directorist.com/product/directorist-woocommerce-pricing-plans/)** - This extension enables you to use all the payment gateway supported by WooCommerce itself. It is also integrated with WooCommerce Subscriptions which offers recurring payment system, making room for users to use a free plan, auto expiration system and the money generation from subscription signup fee, all these things you can do with no bother to hike up your online business exactly very close to the hearts of your customers.
👉 **[PayPal Payment Gateway](https://directorist.com/product/directorist-paypal/)** - Get paid through the PayPal payment gateway on your directory listing website.
👉 **[Stripe Payment Gateway](https://directorist.com/product/directorist-stripe/)** - Scale up your payment gateway by using Stripe Payment Gateway extension. This extension is used to accept payment through Credit Cards. David Cards, Visa Card, MasterCard, Apple Pay, Google Pay, AliPay, and many more. This 3D secured extension supports 135 currencies all through the world.
👉 **[Authorize.Net Payment Gateway](https://directorist.com/product/directorist-authorize-net/)** - Directorist Authorize Payment Gateway is a secured payment solution that accepts a great number of payment options for Directorist Pricing Plan like Visa, MasterCard, Discover, AmEx, JCB, PayPal, and more.
👉 **[Booking(Reservation & Appointment)](https://directorist.com/product/directorist-booking/)** - Set up a system for booking online shows, consultations, seminar, wedding invitations, training classes, restaurant, saloon reservations, doctor appointment, lawyer, consultancy firm, and so on.
👉 **[Claim Listing](https://directorist.com/product/directorist-claim-listing/)** - This add-on allows business owners to visit your site and pay to get the ownership of their specific listing just like Foursquare and Yelp with a few clicks.
👉 **[Post Your Need](https://directorist.com/product/directorist-post-your-need/)** - You can hardly find this unique feature extension in any other directory listing plugins. It supports business owners to communicate with consumers and solve their problems on a personal level.
👉 **[Listing With Map](https://directorist.com/product/directorist-listings-with-map/)** - If you want to add a new layout that will show your listings with the map side by side bearing advanced filtering options, this feature extension would be the best bet for you. In this case, when you filter the listings, the search results will be updated without even loading the page.
👉 **[Live Chat](https://directorist.com/product/directorist-live-chat/)** - Integrate private messaging system on your directory listing website and make your business more credible by ensuring customer satisfaction.
👉 **[Image Gallery](https://directorist.com/product/directorist-image-gallery/)** - This feature extension allows you to add unlimited images for your gallery on your directory listing website. You can use a lightbox with an image cropping facility on your website.
👉 **[Mark as Sold](https://directorist.com/product/directorist-mark-as-sold/)** - This allows the listing authors an opportunity to let their visitors know if a particular item is sold or not on their directory listing website.
👉 **[Google ReCAPTCHA](https://directorist.com/product/google-recaptcha/)** - If you want to protect your directory listing website from fake/spam user registration, this feature extension is the right choice to ensure spam protection. This will stop all the auto-generated bots from submitting by setting up a Google reCAPTCHA challenge while registering users.
👉 **[Listing Slider & Carousel](https://directorist.com/product/directorist-listings-slider-carousel/)** - Display your listings with beautiful sliders and carousels. This highly customizable tool will allow you to display sliders and carousel on any pages, posts, and even in widgets. There are 18 shortcode attributes for sliders and 28 shortcode attributes for Carousel.
👉 **[Business Hours](https://directorist.com/product/directorist-business-hours/)** - This feature extension is used to inform the customers when the business is open and when to close. It shows the opening and closing duration of your business hours. You can customize the timezone with a badge system.
👉 **[Listing FAQs](https://directorist.com/product/directorist-listing-faqs/)** - Set up an **FAQ** section on your directory listing website to satisfy your visitors and convert them into your loyal customers.
👉 **[Social Login](https://directorist.com/product/directorist-social-login/)** - Allow you users to register and login to your directory listing website using their social media channels. In this process, the registration process becomes faster and handy without waiting for the validation process.
👉 **[Rank Featured Listings](https://directorist.com/product/directorist-rank-featured-listings/)** - To rank your featured listing items on your directory website. Sometimes you may need to rank all your featured listings if it happens on a larger scale. Using this extension, you will get complete and the most affordable solution out there you needed.
👉 **[Compare Listings](https://directorist.com/product/directorist-compare-listings/)** - Allows visitors to add a set of listings in a list and compare its features by viewing in a comparison table.
👉 **[Oxygen Builder Integration](https://directorist.com/product/directorist-oxygen-integration/)** - It combines all the functionalities needed to create a complete WordPress directory website using Oxygen Builder.
👉 **[BuddyBoss Integration](https://directorist.com/product/directorist-buddyboss-integration/)** - It is used to integrate the giant Directorist with the popular BuddyBoss plugin. It combines all the functionalities needed to create a complete community based WordPress directory website using Directorist plugin and BuddyBoss platform.
👉 **[BuddyPress Integration](https://directorist.com/product/directorist-buddypress-integration/)** - Directorist - BuddyPress Integration is a premium extension which makes Direcorist and BuddyPress work as a single integrated app, allowing you to build a hybrid listings directory and social network together.
👉 **[Multi Directory Linking](https://directorist.com/product/directorist-directory-linking/)** - If you are running multi-directories on your directory website, Multi-directory Linking will be an awesome extension that will allow your users to connect to other types of directories.
👉 **[Mailchimp Integration](https://directorist.com/product/directorist-mailchimp-integration/)** - Directorist Mailchimp Integration Connects Directorist with Mailchimp. It helps you to make your directory business grow faster and smarter with more leads.
🔥 **[GamiPress Integration](https://directorist.com/product/directorist-gamipress-integration/)** - Directorist GamiPress Integration allows you to coalesce the famous plugin, GamiPress with Directorist activity events based on the points gained and features to make your directory website even more magnetic and interactive.
🔥 **[WPML Integration](https://directorist.com/product/directorist-wpml-integration/)** - Directorist WPML Integration allows you to create multilingual directory with few steps.
🔥 **[Connections to Directorist Migrator](https://wordpress.org/plugins/connections-to-directorist-migrator/)** - Directorist offers a user-friendly tool to simplify the migration process by letting you import thousands of Connections listings data to Directorist without the need to import/export CSV.
== Themes ==
Directorist Business Directory offers free and cost-effective premium [Directorist Themes](https://directorist.com/theme/) to extend the look & functionalities of your directory listing website.
🔥 **[dHotels](https://directorist.com/product/dhotels/)** - dHotels is mapped out with the aim to allow you to create a hotel directory website exactly the same way you have in your imagination.This hotel theme for WordPress is 100 % mobile responsive. Meaning, it fits any screen from mobile phones to desktops.
🔥 **[dClassified](https://directorist.com/product/dclassified/)** - dClassified is a theme that is specially rigged up to create classified listing websites with aplomb. The theme is clean and simple yet one of the most powerful Classified WordPress themes with a string of useful features that you need to build your classified website.
🔥 **[OneListing Pro](https://directorist.com/product/onelisting-pro/)** - If you are trying to create a directory website but are worried to give it the look the way you are portraying in your mind, OneListing Pro is the go-to theme for you. No matter which type of directory website you are going to build, OneListing Pro is designed in a way that can align with any design you can fantasize about.
👉 **[dCar](https://directorist.com/product/dcar/)** - dCar theme is hammered out to construct a car directory that fits any screen, from the largest desktop screens, over any tablet size, down to the smallest smartphones. It’s a theme that showers you to create a car directory with selling and renting features.
👉 **[dPlace](https://directorist.com/product/dplace/)** - dPlace theme is tailored to meet all the nitty gritties to build attractive mobile responsive travel agency directory websites. As a full-fledged theme, it will allow you to create travel & tour directories with booking and reservation features.
👉 **[dRestaurant](https://directorist.com/product/drestaurant/)** - Are you looking for the best restaurant directory theme that brings you more business? Then, nothing can beat dRestaurant, as it is the most powerful theme that checks all your visual needs with the concept of scalability in mind.
👉 **[dRealestate](https://directorist.com/product/drealestate/)** - dRealestate is tailored to meet all the bells and whistles to make your real estate directory as attractive and as lucrative as possible. The theme is completely mobile responsive and compatible with popular page builders including widgets that allows you to give your real estate directory website any look you can imagine under the sun.
👉 **[dDoctors](https://directorist.com/product/ddoctors/)** - A hospital directory website is where you need to show which types or categories of specialist doctors are available, whether they are bookable, what exactly the visit fee is etc. You can do so at ease with the dDoctor theme implementing an out-of-this-world design that fits the medical niche like never before.
👉 **[dLawyers](https://directorist.com/product/dlawyers/)** - dLawyers is a beautiful WordPress directory theme for legal, legal adviser companies, legal offices, court consultants, lawyers, counsel bureau, attorney agencies, and other law-related businesses.
👉 **[dList](https://directorist.com/product/dlist/)** - dList is a listing directory WordPress theme that provides immense opportunities to build any kind of directory or listing site. You may design pages on the front-end and watch them instantly come to life.
👉 **[dService](https://directorist.com/product/dservice/)** - dService is a kind of listing Directory WordPress theme that brings business owners and customers on the same platform.
👉 **[Directoria](https://directorist.com/product/directoria/)** - Directoria is an astonishing directory and listing WordPress theme that is designed and developed to provide the fastest page loading speed without knowing a single line of code.
== 🔔🔔🔔 Coming soon... ==
* Digital Marketplace
* Advanced Review System
* dEvent (Theme)
* dJobs (Theme)
* dCourse (Theme)
Apart from purchasing above mentioned individual extensions or themes, you can get all of the **Directorist Business Directory** extensions and themes in membership as a bonus at a discounted price from the [Directorist Membership](https://directorist.com/pricing/) plan.
If you face any issues with managing this awesome business directory plugin in person, feel free to reach out! Our dedicated support team is always ready to help you in the best possible ways.
== Contribute to Directorist - The Best Business Directory Plugin ==
If you want to contribute to the project, you’re most welcome to make it happen. The full source code is available on [GitHub](https://github.com/aazztech/directorist). If you find anything improbable, feel free to shoot a bug report.
== Privacy Policy ==
We use WordPress REST API to confirm the authenticity of a user attempting to gain access to directorist account to manage and install themes and extensions.
Directorist – Business Directory Plugin uses Appsero SDK to collect some telemetry data upon user's confirmation. This helps us to troubleshoot problems faster & make product improvements.
Integrating Appsero SDK **DOES NOT IMMEDIATELY** start gathering data, **without confirmation from users in any case.**
== Installation ==
1. Unzip the downloaded zip file and upload the plugin folder into the `wp-content/plugins/` directory. Alternatively, upload from Plugins >> Add New >> Upload Plugin.
2. Activate the plugin from the Plugins page.
= Usage =
[Click here](https://directorist.com/documentation/directorist/) for the Documentation.
== Frequently Asked Questions ==
= Is Directorist - WordPress Business Directory Plugin with Classified Ads Listings freemium in type? =
Directorist is a free business directory plugin that offers a number of paid extensions to extend the functionalities of your directory listing website.
= How to make a listing featured? =
You can make a listing featured according to the respective pricing plans.
= Is there any widget facility with Directorist Business Directory plugin? =
Absolutely, you will get 35+ custom widgets using this awesome plugin.
= Is Directorist - WordPress Business Directory Plugin with Classified Ads Listings compatible with any themes out there in the market? =
Yes, Directorist is built in such a way that it works smoothly with all the major themes in the market.
= Can I translate the Directorist - WordPress Business Directory Plugin with Classified Ads Listings to my language and make it multi-lingual? =
Yes, you can use the Loco Translate plugin or Poedit tool to translate your directory into your language. You can also make it multi-lingual using the gTranslate or Polylang plugin. For more information and guidelines refer to the blog post [here](https://directorist.com/blog/how-to-make-directorist-multi-lingual).
= What types of directories can I build? =
Directorist is a complete directory solution and in combination with its advanced extensions, you can build directories of any kind. For example:
* Booking directory
* Classifieds directory
* Service-based directory
* Hotel directory
* Local directory
* Restaurant directory
* Professional directory
* Car directory
* Member directory
* Real-estate directory and many more
== Changelog ==
7.4.2.1 - Oct 24, 2022
* Fix - Current geolocation issue in location search field
7.4.2 - Oct 20, 2022
* Improve - Changed default image size for all-listings page to load the page faster
* Fix - Custom id/class in review section works now
* Fix - Added missing 'required' attributes in registration form
* Fix - Fixed nonce conflict in registration form
* Fix - Fixed placeholder text issue for pricing field on add-listing page
* Fix - Notification in dashboard works better now
* Fix - Fixed few missing translation strings
* Fix - Fixed default map location issue
* Fix - Added few minor php checks
7.4.1 - Oct 04, 2022
* Add - Some missing assets
7.4.0 - Oct 03, 2022
* New - Brand new icon picker added
* Improve - Improved icon rendering method, now icons render from svg files
* Fix - Fixed pagination issue when using radius search filter
* Fix - Fixed missing icons from all-listings page in backend
* Fix - Import style issue
7.3.4 - Sep 15, 2022
* Add - New hook in the custom single listing page
* Add - Helper function `directorist_esc_json()` to sanitize any JSON output
* Fix - Documentation link in Builder
* Fix - Pagination in All Authors page
* Fix - Rewrite role URL slug issue with checkout page
* Fix - Max attribute issue in listing form textarea and number fields
* Fix - Listing can't be renewed if monetization is turned off
* Fix - Expiration date is not forwarding after renewal
* Fix - Multiple invalid emails send in a listing renewal
* Fix - Single listing page conflict in Divi builder
* Fix - Listing can't be unfeatured from the admin listing form
* Remove - Outdated code for search meta query
* Remove - All assets in the admin root folder
7.3.3 - Aug 24, 2022
* Fix - Limit restriction issue of location, category, tag, number and textarea fields
* Fix - Page ID issue in listing archive page
* Add - New action hook 'directorist_after_file_upload_form_field'
* Tweak - Cron interval changed 5 to 30 munites
* Remove - File limit notice from custom field file upload
7.3.2 - Aug 14, 2022
* Fix - Theme and Extensions updating issue
* Fix - Custom single listing page
* Fix - Translation issue in Dashboard
7.3.1.2 - Aug 10, 2022
* Fix - Fatal Error for verifing nonce in parse_query action hook
* Fix - Issue in changing default directory type
* Fix - Listings page category popup
* Fix - Extension activation issue in membership page
* Fix - Excerpt and textarea line break issue
* Fix - Typo in map info window
7.3.1.1 - Aug 07, 2022
* Fix - Issue in admin notice
* Fix - Issue in directory type import
* Fix - Count issue in All Categories page
7.3.1 - Aug 05, 2022
* Improve - Plugin security
* Add - New option to control visibility on user email in All Authors page
* Remove - User role from All Authors page
* Fix - Instant search issue with Business Hours extension
* Fix - Default directory type detection while importing listings
* Fix - RTL style issues
7.3.0 - Jul 19, 2022
* New - Twenty Twenty-Two theme support
* New - Templating support for widgets
* Improve - Assets optimized to increase the webpage loading speed
* Improve - Some styles updated
* Fix - Admin announcement mail sending bug fixed
* Fix - Registration redirection now works properly for new user
* Fix - In listing archive, empty list items for custom fields without values have been removed
* Fix - String concatenation bug fixed for some fields in listing form
* Fix - In search form, custom field for a specific category was taking extra space even though that category wasn’t selected
* Fix - Radius search and geolocation now works properly in search form
* Fix - When importing CSV, directory type was missing if multi-directory was enabled
* Fix - Listing form submission data saving now works properly
* Fix - In search form, category field was showing all categories regardless of selected directory type
* Fix - Checkout redirection now works properly
* Fix - Added missing html tag in password reset form
* Fix - Fixed duplicate dom in search form after changing directory type
* Fix - Review code updated to fix the compatibility with buddyboss
* Fix - Fixed price Range data saving issue when pricing type is selected to price range
* Fix - Fixed overall php warnings and console errors
* Fix - Fixed elementor deprecated notice
* Fix - Fixed few security issues
7.2.3 – Jul 05, 2022
* Improve – Plugin security
7.2.2 – May 25, 2022
* Add - WPML extension compatibility
* Add - Auto field mapping on CSV importer
* Fix - Instant searching issue with selected listing ids in shortcode
* Improve - Search form templating
7.2.1 – May 9, 2022
* Add - Listing search based on zip code radius
* Add - New option to restrict frontend user registration
* Fix - Listing search issue with special character
* Fix - Single taxonomy shows the wrong result if the directory_type parameter exist in the URL
* Fix - Issues in pricing template of Add Listing form
* Fix - Translation issues in the search form
* Fix - Missing shortcode attributes in search control when switching category
* Fix - Directory type creation issue with special character in the title
* Fix - Select2 does not work after re-initialization
* Fix - Select2 category field is not working when the search widget used in the sidebar
* Fix - Pagination issue with instant search (when disabled view as a dropdown)
* Fix - Console error in listing's archive pages
* Fix - Update all Themes button is not working on the membership page
* Fix - Single taxonomy searching issue with instant search
* Fix - Multiple listing submitted on clicking Listing Submit button too frequently
* Fix - Listings column issue with Elementor’s widgets
7.2.0 – Mar 30, 2022
* Add - Instant search in all listings page
* Add - directorist_listing_reported action hook
* Add - directorist_listing_imported action hook
* Add - directorist_loaded action hook
* Fix - Style issues
* Fix - Console errors
* Fix - Data update notice missing when directorist_db_version is null
* Fix - File path reading issue in some specific server configuration
* Fix - Review email issue
* Fix - Listing importing issues with preview image
* Improve - Codebase
* Tweak - User favorites
7.1.2 – Feb 17, 2022
* Fix - Fatal error when review disabled
7.1.1 – Feb 16, 2022
* Add - Load category custom field when selecting search form categories
* Add - 'section_data' as the second parameter of 'directorist_single_section_has_contents' filter hook
* Fix - User not able to select address if there's no map added on the add listing form
* Fix - Wrong listings in Author Profile page where usernames with a space
* Fix - Wrong directory type assign if search form used with listing form
* Fix - Search Form category loading issue with select2 lazy load
* Fix - Migration confirmation notice on fresh Installation
* Fix - Some minor issues with the review system
* Fix - Google map info window issue
* Fix - Style & responsive issues
* Fix - Error in System Info page
* Improve - Resource loading and performance
* Tweak - External links from settings & builder open in new tab
7.1.0 – Jan 19, 2022
* New - Reply in review or other replies
* New - Optional website field for guest review
* Improve - Inplace review and reply editing
* Improve - Guest review without auto account register
* Improve - Review section design
* Improve - Faster review query
* Improve - Faster rating search
7.0.8 – Dec 29, 2021
* New - Hide search form fields by shortcode parameter
* New - Option to create All Authors page shortcode from setup wizard
* Fix - Listing image uploader validation issue in add listing form
* Fix - Theme updating issues from subscriptions management page
* Fix - Single category and location page compatibility issues with Polylang plugin
* Fix - Admin add listing form issue (add custom event listener on directory type change )
* Fix - Style issues
* Improve - Colour picker field in settings panel
* Improve - Default directory type query (directorist_get_default_directory())
* Remove - Unofficial extensions form membership page
7.0.7 – Dec 8, 2021
* New - Nav icon in related listings carousel
* New - Option to allow users to apply map's default location on listings map view
* New - Search form categories lazy loading.
* Improve - Search form loading performance.
* Improve - Directory type slug editing experience
* Improve - Overall query performance.
* Fix - Style issues
* Fix - Rest API endpoint
* Fix - OG meta conflict with Yoast SEO plugin
* Fix - Author listings columns synced with all listings template
* Fix - Rewrite roles conflict with Polylang plugin
* Fix - Listing importer create new directory type
* Fix - Add listing form parameter
* Fix - display_preview_image parameter issue of all listings shortcode
* Fix - Overlapped advanced filter height issue
* Tweak - Default redirection after login and registration
7.0.6.3 – Nov 22, 2021
* Fix - Listing review issues
* Fix - All listing page dropdown toggle issue
* Fix - Dummy data importing issue
* Fix - File upload issues
* Fix - Contact listing owner form issues
* Fix - Search address field autocomplete issue
* Fix - Yoast SEO meta key issue
* Fix - Address saving issue when search form use in listing form
* Improve - Security
7.0.6.2 – Nov 15, 2021
* Fix - Security issues
7.0.6.1 – Nov 14, 2021
* Fix - Security issues
7.0.6 – Nov 11, 2021
* New - Public Rest API to read and write directory data
* New - Notification event API
* New - WhatsApp option in listing phone
* New -[directorist_all_authors] shortcode to show all directory authors (https://directorist.com/documentation/directorist/shortcodes/all-authors/)
* Fix - File upload in add listing form
* Fix - Reset button when multiple form use in a page
* Improve - Style in listing form, single listing and archive page
* Tweak - Profile edit form of User Dashboard page
* Tested - With WordPress 5.8.2
7.0.5.6 – Oct 25, 2021
* Fix - Search form issues when the form is used twice
* Fix - Report listing couldn’t track the logged-in user
* Fix - Modify browser title for the non-directorist page
* Fix - Couldn’t find a field if the field has no label in the submission form
* Fix - Extensions template override
* Fix - Selecting all listing page as site homepage and navigate directory type redirect to blog page
* Fix - Issue with listing content ( remove get_the_content and add directorist_the_content )
* Fix - Add listing geo suggestion when search form is used on the same page
* Fix - Google and OpenStreetMap issues with some cache and optimiser plugin
* Fix - Unfavourite listing issue on the user dashboard
* Fix - Field key required message on add listing form builder
7.0.5.5 – Sep 20, 2021
* Fix - Product endpoint loading issue
7.0.5.4 – Sep 13, 2021
* Fix - Search widget compatibility issue with directory builder
* Fix - HTML 5 validation issue in add listing form (location, category, tag)
* Fix - Single Listing custom page
* Fix - Select custom field issue in search listing form
* Fix - Elementor’s deprecated method
* Fix - PHP notice in some pages
* Fix - BuddyBoss theme menu compatibility issue
* Fix - Duplicate HTML ID issue
* Fix - Select2 issue on add listing page
* Fix - tagDiv page builder single template override issue
* Fix - Listing type nav responsive issue
* Fix - Category, Location, and Tag importing issues
* Fix - Console error when image uploader has invalid data
* Fix - Icon issue in all listings page for logged out user
* Fix - Extra padding in add listing OpenStreetMap geo suggestions
* Fix - Extra padding in single listing map info window
* Fix - Extra padding on uploader file in add listing form
* Fix - Custom field’s “See More” link
* Fix - Review placeholder issue in the search form
* Tweak - Single listing social share open in a new tab
* Tweak - Profile update notification hide automatically after few seconds
* Improve - WP Query
* Improve - Member subscription page
* Improve - Extensions compatibility
* Improve - Google map view
* Update - Appsero client lib
* Remove - Builder data sanitization option
7.0.5.3 – Aug 12, 2021
* new - Autofill in user registration form
* new - Missing FontAwesome and LineAwesome icons
* new - New hooks
* Fix - Listing permalink issues
* Fix - Spacing issue
* Fix - Responsive issues with popular themes
* Fix - Select2 issue
* Improve - HTML markup
* Improve - Listing importer
* Improve - Error handing in subscription management page
* Improve - Compatibility with BuddyPress and BuddyBoss
7.0.5.2 – Aug 2, 2021
* Fix - Compatibility issue with WP v5.8
* Fix - Alignment issue in subscription management page
* Fix - Listings grid responsive issue
* Fix - Single listing shortcode module
* Fix - Performance issue (reduced MySQL queries)
* Fix - Listing updating issue from admin listing form, (if directory default expire set to NaN)
* Fix - Listing search returns no result on admin dashboard
* Fix - Edited review creates new review
* Fix - Listing gets published when saving as draft from backend
* Fix - PHP notice on 404 page
* Fix - Builder saving issue (environment specific)
* Fix - Invalid key declaration in settings panel
* Fix - Add to favourite is not working on related listings section
* Fix - Wrong html end tag in several template files
* Fix - Single category, location & tag page not working when term name/slug is not in English
* Fix - Single listing permalink issue in widgets area
* Fix - Permalink issue in all listing directory type nav
* Fix - Update - Appsero client lib
e issues
* Improve - Select field in settings panel and builder
7.0.5.1 – JUL 14, 2021
* Fix – Empty placeholder warning issues in add listing form
7.0.5 – JUL 14, 2021
* New – Custom shortcode/HTML support in single listing
* New - Single listing shortcode template
* New - Text alignment & atyle option in Elementor search form widget
* New - 16 Gutenberg blocks
* New - Option to edit directory type slug
* New - Unmimified assets
* Fix - Placeholder issue in add listing form
* Fix - Update - Appsero client lib
e issues
* Fix - SEO issues
* Fix - Map info window issue of OpenStreetMap
* Fix - Radius field issue on search form
* Fix - Zoom and markup preload issue fixed in google map view
* Fix - Closing tag issue in custom field template
* Fix - Search forms default button issues
* Fix - Deprecated notice from Elementor plugin
* Fix - Contact Listing Owner Form issue
* Fix - Custom fields assigned with category in listing form
* Fix - Single listing slider’s thumbnail issue
* Fix - Settings panel quotation issue
* Fix - Expired listing notification issue
* Fix - Listing URL issue at email templates
* Fix - Review form issue for listing author
* Improve - Filter hook ( ‘atbdp_email_templates_settings_sections’ to ‘directorist_login_form_templates_settings_sections’ )
* Improve - GET method replaced by REQUEST method on search query
= 7.0.4.1 - May 24, 2021 =
* Fix - Fatal error form membership management page
* Fix - Author listing pagination is not working
* Fix - Settings Color issue
* Fix - Edit listing redirect url issue with checkout
* Fix - Multiple times file upload custom field issue in add listing
* Fix - No result found searching from checkbox
* Fix - Title and description editing issue
* Fix - Quick login issue
* Fix - Listings disappearing from listings page
* Fix - Settings panel slashing issue
* Fix - Settings panel slashing issue
* Fix - Custom fields issue in search form
* Fix - Number field autoplay
* Fix - Asset loading issue with page builders
* Add - Buttons (renew and promote) in user dashboard
* Add - Filter hook to range slider and dashboard query arguments
* Tweak - Options panel
* Improve - Form Builder
* Improve - Dummy CSV file
* Remove - Legacy template support
= 7.0.4 - Apr 28, 2021 =
* New - Pretty url in author profile page
* New - Missing setting
* Fix - Custom field in search (checkbox, radio & select)
* Fix - Custom field loading issue with mostly used categories
* Fix - Author page responsive issue
* Fix - Expired listings issue
* Fix - Tagline issue in listings page
* Fix - Builder issues
* Fix - Translation issues
* Fix - Columns validation issue of taxonomies page
* Fix - Custom file upload field issue
* Fix - Youtube missing issue on author page
* Fix - Dashboard vertical scroll issue
* Fix - Default expiration issues
* Fix - Tag field in search form
* Fix - Dynamic placeholder issue in select2 type fields
* Fix - Location suggestion from map API
* Fix - Category icon update issue
* Fix - Contact Listing Owner widget
* Fix - implode() deprecated notice
* Fix - Rewrite rule issue with directory slug
* Fix - Slider issues in single listing
* Fix - Line breaking in author's bio section
* Fix - Issue in logged_in_user_only
* Fix - Subscription management issues
* Fix - Listing filtering issue with category in Elementor
* Fix - Advance filter sliding issues
* Fix - Default preview image issue in single directory
* Improve - Default icon of custom fields in card builder
* Improve - Yoast compatibility
* Improve - Review alert
* Improve - Google map
* Improve - Search form Update - Appsero client lib
e
* Remove - Extra language file
* Improve - Settings cleanup
= 7.0.3.3 - Mar 31, 2021 =
* New - New parameter to show/hide popular category in search form
* Fix - Search listing issue
* Fix - Builder issues
* Fix - Update - Appsero client lib
e issues
* Fix - Compatibility issue with Event Calendar plugin
* Fix - PHP error with Yoast plugin
* Fix - Single Listing page address linking issue
* Fix - Tagline issue
* Fix - Dashboard thumbnail issue
* Fix - Map widget (single)
* Fix - Translation issues
* Fix - Google map issue when address field not in use
* Fix - Fit image with container in single listing
* Fix - Decimal issue in custom field number
* Fix - Radius search field in search
* Fix - Announcement issues
* Improve - Listing Export
= 7.0.3.2 - Mar 19, 2021 =
* Fix - Single listing review, author, similar listings section disappearing issue
* Fix - Compatibility issues with some themes eg. Divi
* Fix - Builder widget's issues
* Fix - Responsive issue
* Fix - Login issue in subscription management
* Fix - Popular category issue
* Fix - Theme header Update - Appsero client lib
e modifying issue
* Fix - Fixed locations widget count issue
* Fix - New location creation
* Fix - Builder saving issue
* Fix - Custom field in search form
* Fix - Update - Appsero client lib
e compatibility with Elementor
* Add - Tolltip dependency
* Add - excluded custom taxonomy links (native) from YOAST sitemap
* Improve - Search form fields
= 7.0.3.1 - Mar 13, 2021 =
* Fix - Category and location displaying issue
* Fix - Preset fields not show in listings page
* Fix - PHP error in single listing
* Improve - Terms link
= 7.0.3 - Mar 12, 2021 =
* Fix - Login issue
* Fix - Old custom field displaying issue
* Fix - Custom field checkbox saving issue
* Fix - Map latitude and longitude saving issue
* Fix - Translate issues
* Fix - Review deleting issue
* Fix - Add listing form validation issue
* Fix - New category creating issue in add listing form
* Fix - map_zoom_level parameter issue
* Fix - Listings bulk edit
* Fix - Membership management page
* Fix- Custom Fields(Checkbox , Radio) avoiding the unnecessary scroll for more item.
* Improve - Builder issues
* Improve - Migration
* Improve - Elementor's widgets
= 7.0.2 - Mar 07, 2021 =
* Fix - Drag and drop section disappearance issue
* Fix - Preview image issue
* Fix - Renewal listing disappearance issue
* Fix - Featured listing issue form admin listing form
* Fix - Custom fields issue
* Fix - Update - Appsero client lib
e issues
* Fix - Listing exporter's issue
* Fix - All categories bug
* Fix - New listing default status issue
* Fix - Login issue
* Fix- Search form issue with popular categories
* Improve - Migration
* Improve - Builder performance
= 7.0.1 - Mar 03, 2021 =
* New - Option to remove dynamic directory slug
* Fix - All category and location page issues
* Fix - Responsive issues
* Fix - Widgets issues
* Fix - Membership page issues
* Fix - Custom fields migration issues
* Fix - Add listing form validation issue
= 7.0 - Mar 01, 2021 =
* New - Multi directory
* New - Custom form and layout builder
* New - New settings panel
* New - Templating
* New - Listing CSV Export/Import with custom field
* New - Legacy template support
* New - Asset loading on demand
* New - Different dashboard and signup options for users and listing owners
* New - Same author listings in similar listings
* New - PHP compatibility (7.0 to 8.0)
= 6.5.8 - Feb 17, 2021 =
* Add - Admin debugger
* Add - Compatibility with PHP 8
* Fix - Edited listing status issue
* Fix - Fix title issue in Astra theme
* Fix - Image limit issue in add listing
* Fix - Translation issues
* Fix - Fix duplicate notice in announcement
* Fix - Listings order by 'rand' when cache enabled
* Fix - Category icon issue
* Fix - Location permalink issue
* Fix - Add listing form restriction
= 6.5.7 - Dec 21, 2020 =
* Add - Rank Math plugin compatibility
* Add - Guest submission login modal for existing users
* Add - All listing short code parameter "map_zoom_level"
* Add - Option to restrict single listings for logged in user only
* Add - WP 5.6 compatibility
* Fix - Search result sort by feature
* Fix - Listing bookmark issue
* Improve - Contact listing owner confirmation message
= 6.5.6 - Nov 27, 2020 =
* Add - A form to send bulk announcement to directory user
* Add - Featured listing auto fallback to normal
* Add - Option to show Thank You notification after submitting a listing
* Add - Country restriction in google map auto suggestion
* Add - Featured listing auto fallback to general
* Improve - Checkout system
* Improve - User Dashboard Page
* Improve - Payment Receipt Page
* Fix - Undefined variable in all listings map view
* Fix - Translation issue
* Fix - Google map marker issue in admin add listing form
* Fix - Title issue in single term pages
* Tweak - Category icon in all listings page
* Tweak - Order email notification
= 6.5.5 - Oct 20, 2020 =
* Fix - Fatal error of all location and category pages
* Fix - Deprecated notice
* Fix - Map issue
* Remove - Hook used in Business Hours extension
= 6.5.4 - Oct 19, 2020 =
* Add - Allow listing owners to create location
* Add - Maximum location creation/selection limit
* Add - Option to redirect to referrer page after login
* Add - Option to disable SEO
* Improve - Polylang support
* Improve - Validation of map's latitude and longitude
* Fix - Single listing social media icon issue
* Fix - Orderby rand parameter is not working if cache is enabled
* Fix - Tag creation issue with settings
* Fix - Filtering issue with pagination
* Fix - Update - Appsero client lib
e issues
= 6.5.3 - Oct 8, 2020 =