forked from sovware/directorist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreadme.txt
More file actions
1335 lines (1079 loc) · 60.2 KB
/
readme.txt
File metadata and controls
1335 lines (1079 loc) · 60.2 KB
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 - Business Directory Plugin ===
Contributors: wpwax
Donate link: https://directorist.com/extensions/
Tags: member directory, listings, classifieds, directory plugin, business directory
Requires at least: 4.6
Tested up to: 5.6
Stable tag: 6.5.7
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
The most comprehensive directory plugin to create job listings, classified ads, booking directory, local directory, service directory, pets directory
== Description ==
== The Most Intuitive WordPress Business Directory Plugin ==
Want to build an online directory of business listings similar to Yelp, Yellow-Pages or Tripadvisor on your WordPress site? Well, if the answer is **YES**, you have come to the right place. Directorist streamlines the process of creating powerful business directories or classified websites.
👉 [Demos](https://directorist.com/demos/) | [Docs](https://directorist.com/documentation/directorist/) | [Themes](https://directorist.com/product/category/themes/) | [Extensions](https://directorist.com/product/category/extensions/) | [Roadmap](https://directorist.com/roadmap/) | [Support](https://directorist.com/dashboard/) 👈
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. You can also make classified websites like a car selling directory, booking directory, land selling directory, team directory, job portal, directory portal, staff directory, medical directory, doctor directory, address book, and what not!
👉 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)
Directorist Business Directory is one of the leading and fast-growing business directory plugins in WordPress. It is fully compatible with popular WordPress themes that allows you to transform your existing website into a personalized business directory with tons of advanced features and functionalities.
== WHY SHOULD YOU USE DIRECTORIST - THE BUSINESS DIRECTORY PLUGIN? ==
👉 **Beginner Friendly:** Thoughtfully designed user-interface lets users to 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 allows 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 private messaging system on your directory listing website that allows users to have a real-time private conversation with business owners.
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 Bulk Importer (listing, category, location, tag, media etc.).
* Highly-optimized and rocket-fast performance to ensure scalability.
* 25+ Elementor Page Builder widgets.
* Advanced search filters to narrow down and yield accurate search results and with 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 short codes.
* GDPR compliant.
* Ajax powered listing and review submission.
* Listing owner contact form.
* 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 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 a 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 better user experience and the 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 with your existing theme and turn it into a personalized business directory or classified website using a wide range of functionalities. Directorist boasts modern-day designs with 3 types of view that includes — 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 classified website to any language effortlessly using 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 lets you set custom meta title and description in every directory page. It is also compatible with Yoast SEO plugin.
👉 **RTL (Right to Left):** Directorist Business Directory is fully compatible with RTL languages like Arabic, Aramaic, Hebrew etc.
== Powerful Search and Advanced Filters ==
The Directorist Business Directory 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.
* Use custom fields as search filters.
* Search widgets with 14 different filters.
* Highly customizable filters for each type.
== CSV Bulk Importer ==
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 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 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 display at the top in 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, it 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 allows users to submit and manage listings from the frontend 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/) or [Stripe](https://directorist.com/product/directorist-stripe/) 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 classified 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 ==
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 the 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 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.
== Paid Extensions to Boost Your Business Directory ==
Directorist Business Directory offers cost-effective premium [Extensions](https://directorist.com/product/category/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.
👉 **[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.
👉 **[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 the 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/)** - 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 slider 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.
Apart from purchasing above mentioned individual extensions, you can get all of the **Directorist Business Directory** extensions in a bundle as a bonus at a discounted price from the [Directorist Extensions Bundle](https://directorist.com/product/directorist-extensions-bundle/) package.
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.
== Here’s What Users Say about Directorist - Business Directory Plugin ==
>👨 __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 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 allows 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
== 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.
== 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 - Business Directory Plugin 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 - Business Directory Plugin 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 - Business Directory Plugin 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
* Classified directory
* Service-based directory
* Hotel directory
* Local directory
* Restaurant directory
* Professional directory
* Car directory
* Member directory
* Real-estate directory and many more
== Screenshots ==
1. Home Page
2. Advanced Search/Filter
3. All Listings Page (Grid View) - Search Result Page
4. All Listings Page (List View)
5. All Listings Page (Map View)
6. Single Listing
7. Widgets
8. Advanced Search Widget
9. Custom Fields
10. File Upload - Author Profile Page
11. Maps
12. Add New Listing (Frontend)
13. Add New Listing (Backend)
14. Author Page
15. User Dashboard (My Listings)
16. User Dashboard (My Profile)
17. User Dashboard (Favourite Listings)
18. Locations Page
19. Categories Page
20. Private Directory
21. Login Page
22. Registration Page
23. Checkout Page
24. Payment Receipt Page
25. Order History
26. Directorist Settings Panel
== Changelog ==
= 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 - Style issues
= 6.5.3 - Oct 8, 2020 =
* Add - Auto login after registration
* Add - Custom redirection after registration
* Add - Polylang plugin compatibility
* Tweak - Browser compatibility
* Tweak - Font Awesome version updated
* Fix - Badge issue of related listings
* Fix - Custom map marker placement issue
* Fix - Conflict with JNews theme
* Fix - Registration validation error
* Fix - Changed preview submit button text
* Fix - Email issue in review
* Fix - Disable price issue in single listing
* Fix - Tags filter source issue
* Fix - Open filter fields issue in listings page
= 6.5.2 - Aug 11, 2020 =
* Add - WordPress 5.5 compatibility
* Add - Open Graph SEO metas for custom pages
* Add - Image validation and sanitization of add listing form
* Fix - Grid View's price disappearing issue
* Fix - Style issues when preview image disabled
* Improve - Cleaned up admin menus
= 6.5.1 - Aug 1, 2020 =
* Fix - Previously renewed listings disappearing issue
* Fix - Page deleting issue of Setup Wizard
* Add - New options to have more control over caching
* Remove - 'Favourite' text from single listing page
* Improve - Font in Setup Wizard
= 6.5.0 - Jul 28, 2020 =
* Add - CSV Bulk Importer (listing, category, location, tag, media etc.)
* Add - Object Caching
* Add - Elementor Page Builder widgets
* Add - Setup Wizard with dummy data importer
* Add - A few more options to control listing review
* Add - Default latitude and longitude of listings map view
* Fix - Email conflict with Contact Form 7
* Fix - Review issue of related listings
* Fix - Multi-author's listing issue of author profile page
* Fix - Listings sorting issue of single tag and category page
* Fix - Listings count issue of user dashboard page
* Fix - Add listing form issue with Post Your Need extension
* Fix - Listing renewal link issue
* Fix - Listing tag widget's issue
* Fix - Style issues
* Improve - Database Query
* Improve - Page loading time
* Improve - Listings thumbnail
* Improve - Spacing
= 6.4.3 - Jun 23, 2020 =
* Fix - Cluster Icon issue of Google Map
* Fix - Duplicate canonical issue with Yoast SEO Premium plugin
* Fix - Review submitting issue with emoji
* Fix - Conflict with Deep theme
* Fix - Translation issues
* Fix - Style issues
* Remove - White space
* Improve - Expired listings of User Dashboard page
= 6.4.2 - Jun 12, 2020 =
* Fix - Listing status
* Fix - Duplicate canonical issue
* Fix - Saving issue of payment receipt shortcode
* Fix - Validation issue of review submission
* Fix - Review pagination
* Fix - Style issues
* Remove - Redirection of add listing page when error happens
* Improve - "Search Listings" widget
* Improve - Yoast SEO plugin compatibility
* Improve - Translation
= 6.4.1 - May 17, 2020 =
* Add - Option to set per image limit in add listing form
* Fix - Listing count issue of category archive
* Fix - Page regenerating issue
* Fix - Image delete when listing is deleted
* Fix - Order date issue in payment receipt
* Fix - Post status and preview issue
* Fix - Email's "From Email" settings
* Fix - "Only Admin Use" issue of Custom field
* Fix - Pending listing status issue
* Fix - Style issue in RTL
* Improve - Post Type Capability
* Change - "Pay & Submit" buttom text to "Continue"
= 6.4.0 - Apr 29, 2020 =
* Add - Option to show location and tag in single listing
* Add - Popular WooCommerce Multivendor plugins (Dokan, WC Vendors, WC Marketplace, WCFM, YITH WooCommerce Multivendor) support
* Improve - User profile image uploader
* Fix - Custom field and category relationship issue
* Fix - Duplicate listing submitting issue
* Fix - WooCommerce empty cart issue
* Fix - WooCommerce product sorting issue
* Fix - Issue in scheduling task
* Fix - Renewal link issue
* Fix - Listing publishing issue
* Fix - Repetitive tag, location and category issues in listing form and listing search
* Fix - Related listing issue
* Fix - Listing preview issue of admin add listing form
* Fix - Image placeholder issue in add listing form
* Fix - Review delete issue
* Fix - Review image issue
* Fix - PHP notice
* Fix - Style issue
= 6.3.4 - Apr 9, 2020 =
* Fix - Redius serarch issue in mobile view
* Fix - Style issues
* Improve - Data type sanitization
* Improve - Code
= 6.3.3 - Apr 6, 2020 =
* Add - Option to set custom redirection after login
* Add - Options to customize email header
* Fix - Errors in PHP v7.4.1
* Fix - Listing status
* Fix - Minor issue on single listing's map
* Fix - Style issues
* Fix - Conflict of radius search
* Fix - Mail sending issue of Contact owner form
* Fix - Category and location not saving issue on add listing form
* Fix - Edited listing email issue
* Fix - Listing status when checkout not continued
* Fix - Review disable issue on author profile page
* Fix - 'Go Back' link on single listing page
* Fix - Broken link in listing thumbnail on map view
* Fix - search location placeholder issue
* Fix - Randomly filtering issue on single location page
* Fix - Table name prefixing issue during uninstall
* Fix - Advanced filter issues
* Fix - Disable single listing view settings is not applying on map's info window
* Improve - Advanced filter reset in search result page
* Improve - Card style in User Dashboard page
* Remove - Repeated JS codes
* Remove - Login form markup
* Remove - Unnecessary settings
* Remove - Bootstrap tooltip
= 6.3.2 - Mar 4, 2020 =
* Fix - Add Listing form redirection issue
* Fix - Issues of PHP older version
* Fix - Price formatting issue
* Fix - Style settings
* Fix - Typos
* Fix - Tag and Category issues of add listing form
* Add - Options to customize single listing slider
* Fix - Current location issue
* Fix - Tagline saving issue of add listing form
* Fix - Get Direction link issue of Google Map's info window
* Improve - Logged-in user identification
* Improve - Date format of payment receipt
* Improve - RTL
= 6.3.1 - Feb 15, 2020 =
* Fix - Saving issue of Settings panel
* Fix - Review and listing email issue
* Fix - Formatting issue of listing description
* Fix - Filtering order history by order status
* Fix - Design issues
* Add - Options to customize single listing slider
= 6.3.0 - Feb 10, 2020 =
* Add - Guest Listing Submission (listing submission without login)
* Add - Option to use custom template for single listing
* Add - Custom Media uploader on Add Listing form
* Add - Ajax pagination in listing reviews
* Add - A few new hooks
* Add - Option to change terms & conditions label
* Add - Option to add Privacy Policy on add listing and registration form
* Add - Option to set maximum image upload limit and size
* Add - Author listing's filter customization option
* Add - Space validation of username in registration form
* Add - Supports for user roles of WooCommerce plugin's "Customer" & "Shop Manager"
* Improve - Author's website address linking
* Improve - Listing submission without reloading page
* Improve - Listing phone number 2 clickable
* Improve - Login and Registration pages
* Improve - User registration process
* Improve - Listing slider
* Improve - Listings preview image cropping
* Improve - Follow website's default date format for custom field and review
* Improve - Firefox browser compatibility
* Fix - Prevent displaying expired listings in related listing slider/carousel
* Fix - Author name tooltip issue in listings pages
* Fix - Custom rewrite for listing slug
* Fix - Capability issue of listing submission from admin dashboard
* Fix - Rating issue of author profile page
* Fix - Undefined function error
* Fix - Translation issues
* Fix - Zoom issue of OpenStreetMap map
* Fix - Ordering issue of Location widget
* Fix - Style issues
* Fix - Typos
= 6.2.2 - Dec 17, 2019 =
* Add - Option to remove directorist's data on uninstall
* Add - Using description of category and location as Meta Description
* Add - HTML Email template
* Add - Options to remove Author listing's filter
* Improve - Password recovery/reset system
* Tweak - Change map widget's default zoom level
* Tweak - Review's author image issue
* Fix - Translation issue
* Fix - OpenStreetMap issue
* Fix - Featured image issue on single listing's header
* Fix - Listing Status when user skips payment for featuring a listing
* Fix - Listing form field validation errors
* Fix - Style issues
= 6.2.1 - Nov 23, 2019 =
* Fix - OpenStreetMap map issue of 'no listing found'
* Fix - Tag issue of search
* Fix - Map icon issue
* Fix - Radius search issue
* Fix - Category widget dropdown issue
* Fix - Location widget dropdown issue
* Fix - Listing renewal issue
* Fix - Tag issue of listing form
* Fix - Listing's status conflict with monetization
* Improve - Function naming
* Improve - Tags field
* Improve - Option to submit review without login
* Improve - Made OpenStreetMap map's marker draggable
* Improve - User login authentication process
= 6.2.0 - Nov 05, 2019 =
* Add - Option to select Kilometers or Miles for Radius Search
* Add - Option of default Radius Distance
* Fix - Login error message issue
* Fix - Listing publish before checking out
* Fix - Decimal issue of listing form
* Fix - Radius search of search result
* Fix - OpenStreetMap map issue
* Fix - View Count issue of user's listing adding form
* Fix - OpenStreetMap map conflict with Rank Math SEO Plugin
* Fix - Pagination issue
* Fix - Design issues
* Fix - Form fields settings issue
* Improve - Header title of Search Result page
= 6.1.0 - Oct 24, 2019 =
* Add - Category icon in OpenStreetMap
* Improve - Google Map
* Improve - OpenStreetMap map
* Fix - Translation issue
* Fix - Custom field with category issue
* Fix - Required issues of search fields
* Fix - Add to Favourite functionality of author page
* Fix - Decimals issue of listing's price
* Fix - Radius search conflicts with rating filter
* Fix - Current location issue of OpenStreetMap
* Fix - Autosuggestion issue
= 6.0.2 - Oct 17, 2019 =
* Fix - Google map issue
* Fix - OpenStreetMap direction issue
* Improve - Social Media icon of single listing page
* Improve - Google map info window
= 6.0.1 - Oct 16, 2019 =
* Fix - Price range placeholder issue
* Fix - Password label issue of Registration form
* Fix - Author image linking issue
* Fix - Translation issue
* Fix - Text color issue of Style Settings
* Improve - Single listing slider (If there is one slider image, it won't show slider thumbnail)
= 6.0.0 - Oct 14, 2019 =
* Add - Style Settings
* Add - Radius search
* Add - Listing Bookmark/Mark as Favourite on listings page
* Add - Address finder in location search field
* Add - Custom Map Marker
* Add - Category icon in Map Marker
* Add - Auto suggestions in location search field (if choose to display from Map API)
* Add - Option to remove single listing's address link
* Add - Option to show published date on listings page
* Add - Option to add listing's email and website url on listings page
* Add - Option to customize Map info window of single listing page
* Fix - OpeNStreetMap/Google map zooming issue
* Fix - Published date issue on listings page
* Fix - 'Remember Me' of login form
* Fix - Map info window of single listing page
* Fix - Header title issue of search result page
* Fix - Extra space issue of excerpt field
* Fix - Currency Symbol issue
* Fix - Translation issues
* Fix - Style issues
* Improve - Settings Panel
* Improve - Social Media icons of single listing page
* Improve - Listings page header title
* Improve - User Role
* Remove - 'Google+' from social media links
= 5.9.2 - Sep 10, 2019 =
* Add - Control listings map view's zoom level
* Add - Extended search form
* Add - Option to remove filter icon
* Fix - Google Map issue
* Fix - Price formatting issue
* Fix - Email notification of review
* Improve - Login form's functionality
* Improve - Listing default status functionality
* Tweak - Add listing form
= 5.9.1 - Aug 31, 2019 =
* Fix - Locations page issue
* Fix - Placeholder issue of listing form
* Tweak - Display search box's categories alphabetically
* Improve - Compatibility with Directorist Pricing Plans
= 5.9.0 - Aug 29, 2019 =
* Add - Option to show/hide Price Range from Form Fields
* Add - Option to customize logic of Related Listings
* Add - Control content of Map Info Window
* Add - Parent-child relation in category and location dropdowns
* Extend - Payment Currencies
* Fix - Conflict of login failed notification with WooCommerce
* Fix - Advanced Search/Filter's labels
* Fix - Rating's apostrophe(/) issue
* Fix - Philippine peso currency issue
* Fix - 'Show More' link issue of Advanced Search/Filter
* Fix - Listing status after renewal
* Fix - Search by Ratings issue
* Fix - Alphabetically ordering issue of Listings locations
* Fix - Styling issues
* Tweak - The email address to send from
* Improve - Compatibility with Directorist WooCommerce Pricing Plans
* Improve - Code (white spacing, deprecated function etc.)
= 5.8.0 - Aug 20, 2019 =
* Add - Review approval option
* Improve - Search fields label
* Improve - Responsiveness of single listing slider
* Improve - Made listing address clickable that opens on Google Map
* Tweak - OpenStreetMap
* Fix - Custom fields issue on Listings Search and Result pages
* Fix - Price format of payment system
* Fix - Styling issues
* Revert - "Not Now" button of checkout page
= 5.7.0 - Aug 17, 2019 =
* Add - RTL support
* Fix - Short by popular listing in Search Results, Single Category and Single Location pages
* Tweak - Recovery password email notification
= 5.6.3 - Aug 15, 2019 =
* Fix - Translation issue
* Fix - Sort by Popular Listings
* Fix - Popular Listings widget
* Fix - Email sender name for recovery password
* Remove - "Not Now" button from checkout page
* Remove - Registration form title
= 5.6.2 - Aug 14, 2019 =
* Fix - Translation issue
* Fix - Listings count
* Fix - Styling issues
* Fix - Preview image issue
= 5.6.1 - Aug 07, 2019 =
* Add - Listing view count control
* Fix - Review updating issue
* Fix - Preview/post image conflict of single listing
* Tweak - Display search box's categories alphabetically
= 5.6.0 - Aug 06, 2019 =
* Fix - Email notification for edited listing
* Fix - Conflict with Event Calender plugin
* Fix - OpenStreetMap issue
* Fix - Repeating email notification issue
* Fix - Assigning tag capability of frontend user
* Fix - Location Saving issue of frontend user
* Fix - New user notification email
* Fix - Styling issues
* Add - orderby='rand' to display listings randomly ([directorist_all_listing orderby='rand'])
* Add - Options to change the labels of User Dashboard tabs
* Add - New shortcode to display author information on single listing page
* Add - Searchability of location and category search fields
* Tweak - Option to choose email recipient for receiving email from Contact Listing Owner Form
= 5.5.3 - Jul 25, 2019 =
* Fix - Category issue of single listing page
= 5.5.2 - Jul 24, 2019 =
* Fix - Listing search issue
* Fix - Listing submit with more than four categories
* Fix - SEO issue
* Add - Connected WordPress user bio with the plugin's user bio
* Add - Alt attribute to category and location images
* Add - Option to hide Back Link
* Improve - Styling on several places
= 5.5.1 - Jul 18, 2019 =
* Add - Fax number and another phone number fields in add listing form
* Fix - Preview image issue
* Fix - Category icons issue
* Fix - Custom Fields issue
* Improve - Styling on several places
= 5.5.0 - Jul 17, 2019 =
* Add - Multiple Locations and Categories for users
* Add - Private/logged in user only content/directory
* Add - Forward/redirect any pages
* Add - Option to make Search fields required
* Add - Admin Email Notification when someone submits a review
* Fix - Custom Fields issue of Add Listing form
* Fix - Minor issue of Image & Video section
* Fix - Full width issue with Directoria theme
* Fix - Line break & paragraph issues of single listing
* Fix - Twitter issue
* Fix - SEO issues
= 5.4.4 - Aug 05, 2019 =
* Fix - Email notification for edited listing
* Fix - Conflict with Event Calender plugin
* Fix - OpenStreetMap issue
* Fix - Repeating email notification issue
* Fix - Assigning tag capability of frontend user
* Fix - Location Saving issue of frontend user
* Fix - New user notification email
* Fix - Styling issues
* Add - orderby='rand' to display listings randomly ([directorist_all_listing orderby='rand'])
* Add - Options to change the labels of User Dashboard tabs
* Add - New shortcode to display author information on single listing page
* Add - Searchability of location and category search fields
* Tweak - Option to choose email recipient for receiving email from Contact Listing Owner Form
= 5.4.3 - Jul 10, 2019 =
* Fix - "Sort By" issue on search result page
* Fix - Minor issue of Add listing page
* Improve - Responsiveness
* Improve - Translation
* Improve - Single listing page's code
* Tweak - Phone number clickable
* Tweak - Report Abuse popup
* Extend - Added more hooks to make the plugin more customizable
= 5.4.2 - Jul 09, 2019 =
* Add - Listing form fields placeholder text changing option
* Add - Added option in Custom fields to display only for admin or for all
* Fix - Registration form
* Fix - Report Abuse issue
* Improve - Listing's edit button
* Improve - Looks of file upload
= 5.4.1 - Jul 07, 2019 =
* Fix - Login and registration links issue
* Fix - SEO issues of single category, location and tag pages
* Fix - Twitter sharing issue
* Fix - Minor issue of Custom Fields file Uploading type
* Tweak - View as & Sort by button text change option
* Improve - Settings Panel
= 5.4.0 - Jul 02, 2019 =
* Add - Settings Search Box on top of the Settings Panel to find out settings quickly & easily
* Add - File type (audio, video, image, pdf, document and so on..) in Custom Fields
* Add - OpenStreetMap map's marker move
* Add - Control the link of Login and Registration
* Tweak - Info window of Map
* Tweak - Listing columns to work more effectively
* Fix - Pagination issue on single tag page
* Fix - Line Awesome icon css issue
* Fix - Featured widget
* Fix - Shortcodes of Single Listing page
= 5.3.0 - Jun 24, 2019 =
* Add - Line Awesome support
* Add - Pagination on user dashboard
* Add - Number type in Custom Fields
* Add - Back link on single listing's page
* Add - Related listings slider title
* Fix - Search by custom fields issue
* Extend - Category icons
* Improve - Pagination
= 5.2.0 - Jun 15, 2019 =
* Add - Option to display default search results randomly
* Fix - Registration form's password field issue
* Fix - Pagination issue of listings list view
* Fix - Translation issues
* Fix - Conflict with WooCommerce Membership and Social Warfare plugins
* Tweak - Listing default preview image of User Dashboard
* Improve - Listings page's code
= 5.1.0 - Jun 13, 2019 =
* Add - Registration and Login form customization options
* Add - Excerpt word limit and Read More link
* Add - Control listings columns of author page
* Add - Option to remove preview, category and location images
* Fix - Business Hours extension compatibility with related listings
* Fix - Pagination issues
* Tweak - Listings renew button
= 5.0.8 - Jun 07, 2019 =
* Fix - Display custom fields issue in search/filter
* Remove - Temporary removed the feature of searching listing by Custom Fields value
= 5.0.7 - Jun 02, 2019 =
* Add - Option to disable Directorist's Bootstrap JavaScript file to avoid conflict with theme's Bootstrap JavaScript
* Fix - OpenStreetMap issue
* Fix - Category and Location issues in search
* Tweak - Increased "Listing Per Page" limit
= 5.0.6 - Jun 01, 2019 =
* Add - Map view of OpenStreetMap on listings page
* Add - Search listing by Custom Fields value
* Fix - Translation issue
* Fix - Extra 'n' generation on few themes
* Fix - Style issue of custom field's checkbox
* Fix - Display Edit Listing button only for logged-in listing author
* Fix - Automatically listing publish when payment status changed to Completed of Offline Payment Gateway
= 5.0.5 - May 26, 2019 =
* Add - Controlling single listing page using shortcodes
* Add - Registration confirmation email customization
* Fix - Category custom fields and short description issue
* Fix - Color field in advanced search/filter
* Fix - Translation issues
* Fix - Title and subtitle issues on search
* Fix - Review badge issue
* Fix - Style issues
* Fix - Listing form's Social field responsive issue
* Fix - Removed extra 'Z' from edit listing button
* Tweak - Location field of listing form
* Tweak - Changed listing's default review from 1 to 5
= 5.0.4 - May 10, 2019 =
* Fix - Listings header issue
= 5.0.3 - May 09, 2019 =
* Add - Redirection to home page after logging out from User Dashboard
* Fix - Capitalization issues
* Fix - Various style issues
* Fix - Registration confirmation massage
* Fix - Page title of single location and category pages
* Improve - Listings header
* Improve - Terms & Conditions area of add listing form
* Remove - Validations from Setting panel
* Remove - Google+ from User Dashboard
= 5.0.2 - May 01, 2019 =
* Add - New parameters for Shortcodes
* Add - Recover/forget Password option on login page
* Add - Option to hide/show author email
* Fix - Advanced search/filter responsiveness and rating issues
* Fix - Clickable preview image on user dashboard
* Fix - Sort by Popular Listings
* Fix - Style issues
* Tweak - Improved Settings panel
= 5.0.1 - April 25, 2019 =
* Fix - OpenStreetMap issue
* Fix - Advanced search/filter issues
* Fix - Listing pagination on single Category and Location pages
* Fix - Translation issue of advanced search/filter
* Fix - Listing expiration
* Add - Preview image on user's favourite listings list
* Add - New parameters for Directorist Shortcode's
* Tweak - Search Result page meta title
= 5.0.0 - April 20, 2019 =
* Add - Advanced Search (search by Custom Fields, Price, Price Range, Ratings, Tags, Website, Email, Phone, Address, Zip/Post Code etc.)