forked from AyeCode/geodirectory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
1794 lines (1535 loc) · 115 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
=== GeoDirectory - WordPress Business Directory Plugin and Classified Ads Listings ===
Contributors: stiofansisland, paoltaia, ayecode
Donate link: https://wpgeodirectory.com
Tags: business directory, listings, directory plugin, classifieds, member directory
Requires at least: 4.5
Tested up to: 6.1
Stable tag: 2.2.18
Requires PHP: 5.6
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Create a Business Directory, Classified Ads Directory, Job Listings Directory, or Member Directory with the best WordPress Business Directory plugin.
== Description ==
GeoDirectory is the leading Business Directory Plugin for WordPress. Help businesses everywhere get found through their listings by your Geo directory website visitors.
No matter what you need to build, be it a City Directory, a Job Board, a Real Estate Listings Directory, or a Classifieds Website, GeoDirectory turns any WordPress theme into a robust search network for users.
Add all your business listings at once and tap into an impressive set of blocks, shortcodes and widgets to set up intuitive, location-based website directories.
Do it all stress-free and in style with 100% compatible WordPress page builders like Gutenberg, Elementor, Beaver Builder, Divi, and Oxygen!
✅ [Addons](https://wpgeodirectory.com/downloads/category/addons/) ✅ [Themes](https://wpgeodirectory.com/downloads/category/themes/) ✅ [Demos](https://demos.ayecode.io/) ✅ [Docs](https://docs.wpgeodirectory.com/) ✅ [Showcase](https://wpgeodirectory.com/category/showcase/)
== ⚡ TOP RATED BUSINESS DIRECTORY PLUGIN WITH +450 5 STARS REVIEWS ==
= READ WHAT USERS SAY ABOUT OUR BUSINESS DIRECTORY PLUGIN =
>👉 __Fantastic Plugin w/ An Awesome Team Behind It__
>⭐⭐⭐⭐⭐
>GeoDirectory was exactly the tool that I needed to get my directory needs met. The tool is incredibly powerful with a wide arrange of tools and fantastic integration with BeaverBuilder. The support team was incredibly helpful in navigating any new territory we ran into.
>💁 chimostudios (@chimostudios)
>👉 __Flexible and powerful plugin with amazing support__
>⭐⭐⭐⭐⭐
>I switched from another directory listing plugin to GeoDirectory a couple of weeks ago and I think I'm sticking with GD. I’m still moving up the learning curve, but I can see that GD could be a powerful plugin for what I'm trying to do. The support has been fantastic so far. The support team is very responsive and they really try to resolve any issues. They were already helpful answering support tickets that I raised even before I bought my GD membership.
>💁 njsamsatli (@njsamsatli)
>👉 __Great plugin, wonderful add-ons and fantastic support!!__
>⭐⭐⭐⭐⭐
>Like many others I tried other plugins and even a listing theme, none gave me the options, flexibility and seamless integration with Elementor that GeoDirectory did. I worked with the free core GeoDirectory plugin for awhile (which did everything I needed it to) before I finally pulled the trigger and bought the membership giving me full access to all their add-ons and I'm so very happy I did! The add-ons will take your site to a whole new level. Support is simply the best. Fast, friendly and totally clear. You will never have to open another support ticket to explain the answer to the first 🙂 GeoDirectory is absolutely brilliant!!
>💁 isla2 (@isla2)
>👉 __Amazing Directory Plugin__
>⭐⭐⭐⭐⭐
>This is a truly amazing directory plugin. Very solid and extremely configurable. And the most important of all, it works with all themes with minimal css changes (or no changes at all). The free support offered here is fast and accurate. From the 4 plugins i tried, this is the only one that fulfilled my needs.
>💁 dimal (@dimalifragis)
== 🔥 OUTSTANDING ELEMENTOR DIRECTORY PLUGIN INTEGRATION 🔥 ==
GeoDirectory is the best Directory Plugin for Elementor. We integrate with the free Elementor Plugin, where you can use our widgets as Elementor Elements. On top of that, we created a super-tight integration with Elementor PRO.
Each GeoDirectory Template is available to customize through the Elementor PRO theme builder. Also, you can feed GeoDirectory Data to Elementor Elements through their Dynamic Data feature. Check the following video to appreciate how easy it is to customize your next business directory templates with GeoDirectory, the best Elementor Directory Plugin.
[youtube https://www.youtube.com/watch?v=fEdOOucOtUg]
== ⚡ BE THE GO-TO GUIDING HAND FOR PROFESSIONALS: SAY HELLO TO THE WORLD'S BEST WORDPRESS BUSINESS DIRECTORY PLUGIN ==
Our dedicated team continuously refines every point of the search process (since 2011!), so your visitors walk away with a productive session on GeoDirectory every time.
== ⚡ SCALE YOUR DIRECTORY WITH A RELIABLE, PROFICIENT DATABASE ==
Got millions of listings? Massive traffic? Skip the bugs, lags, and crashes with GeoDirectory – the only WordPress directory plugin capable of taking you to the global scale without friction. Our unparalleled, highly-optimized database structure and queries can handle any scale you throw at it. ALL OTHER PLUGINS WILL FAIL AT THIS, GUARANTEED.
== ⚡ ASK AND YOU SHALL RECEIVE – DELIVER SPEEDY RESULTS ==
Get free and paid listings (with the Price Manager add-on) in front of visitors within seconds with our rocket-fast search engine that finds local business listings on demand. With the attractive, easy-to-use user interface and slick back-end configurations, you can make your directory website the staple for high-end results and performance.
== ⚡ DEVELOPER-FRIENDLY + COUNTLESS OF DIRECTORY THEMES ==
The design of your online directory website is limitless, with a wide array of themes and handy page-builder integrations. Need to add that personal touch? Developers can build on GeoDirectory freely using hooks (actions and filters).
== ⚡ HOW IT WORKS - SET UP OUR FREE WORDPRESS BUSINESS DIRECTORY PLUGIN IN NO TIME ==
As one of the top wordpress directory plugins, GeoDirectory is armed with a well-thought-out arsenal of features to make the setup process for your website as easy as possible.
1. **Create your local directory**. Build your website quickly using the best WordPress page builders like Gutenberg. Focus on local businesses around a street or in a city with our free version, and gain the ability to *add multiple locations or go global with our premium multi-location add-on*.
2. **Publish your listing submission form**. Use GeoDirectory's intuitive *drag-and-drop form builder* (with over 40 field types + fully customizable form fields as an add-on) to let people add listings to your directory. Business owners can now also add extended operating hours for listings. Design the tabs of your listings as you wish with the tab builder.
3. **Upload all of your listings at once**. Fill up your online directory effortlessly with a quick *CSV import or export for listings, categories, and reviews*. Conveniently edit your data offline and let everything auto-update with a re-import.
4. **Tap into 40+ widgets, shortcodes, and blocks to improve the user experience**. Use tools like the *Google Maps and [Analytics](https://wpgeodirectory.com/downloads/google-analytics/) widgets* to help businesses get found quicker and allow them to keep tabs on traffic and user behavior. Multilingual site? GeoDirectory is *[100% WPML compatible](https://wpgeodirectory.com/downloads/wpml-multilingual/)*. You can even *enable user reviews and business inquiries* with form integrations.
5. **Enhance search with advanced filters**. Make it easy for users to find accurate results faster (AJAX Loaded) with *listing filters like proximity (premium add-on), rating, reviews, or date*. Use the new badge system to *highlight certain listings for their status or value* (e.g., featured listings, new listings).
6. **Moderate your listings with ease**. Keep your listings tidy by approving or rejecting submissions and managing listing categories with our easy-to-use back-end tools.
== ⚡ FOR WHAT CAN I USE WORDPRESS BUSINESS DIRECTORY PLUGINS? ==
No matter what kind of business you're in, use our free WordPress directory plugin to turn your WordPress site into a powerful search engine for any domain:
* **Events Directory** GeoDirectory makes an excellent WordPress event calendar plugin by allowing people to submit listings of upcoming and ongoing events around the city in your directory theme.
* **Real Estate Directory** Have a real estate agency or website? Use one of the best real estate directory plugins to showcase your listings of houses, apartments, condos, and more. Manage agent profiles and property stats and display listings with beautiful image galleries.
* **Classifieds Ads Directory** Create a marketplace for classified ads with GeoDirectory. Let people submit ads to sell cars, find a job, or promote a service.
* **Jobs Directory** Use GeoDirectory to build a job board where businesses can post open positions, and people can search for employment.
* **Restaurants Directory** Create an online food directory highlighting the best restaurants around town and detailed menus and visitor reviews.
* **Hotels Directory** Use GeoDirectory to list and manage information about hotels, resorts, bed & breakfasts, and other types of accommodation.
* **Doctors Directory** Listing professionals with GeoDirectory is very easy. Create a directory of doctors and allow users to search them by speciality and proximity.
* **Therapists Directory** Just like doctors, you can easily create a directory of Therapists. No matter if they are massage therapists or psychologists.
* **Pets Directory** The pet industry is growing at unprecedented speed. Users need a directory to locate veterinarians, pet shops, pet groomers, pet parks and more.
* **Church Directory** You can list churches, temples, religious retreats and events. Or create a directory of your church members.
* **Service Directory** A directory of freelancers for digital services similar to Fiverr or one for home service professionals like Angi.co or Homeadvisor.com
* **Travel Directory** If you live in a touristic area, list every attraction that a traveller could visit around your area and provide curated experiences.
* **Hiking Trails Directory** This is a subset of a travel directory, but it can also attract local traffic. If hicking is your thing, consider becoming the online expert for this niche.
* **Bars & Nightlife Directory** Another directory niche that can be very profitable and with very high traffic. Listing bars, clubs and discos in your local area can lead to sell tickets for happy hours, concerts, Dj Sets and much more.
* **Software review sites** When the market leader becomes too big, they will be unbundled. Airbnb took over a Craiglist category with short term rentals. Capterra and Trustpilot are becoming huge and soon we will see more specialized software reviews directories. Why not starting yours?
Because GeoDirectory allows you to create any listing's type, each with unique custom fields, you can use GeoDirectory for virtually any kind of directory.
== ⚡ TAKE YOUR BUSINESS DIRECTORY TO NEW HEIGHTS WITH PREMIUM ADD-ONS. ==
Get instant access to Premium Addons that have the power to make your local directory into a money-making global directory toolkit.
* [Go wide with the Location Manager](https://wpgeodirectory.com/downloads/location-manager/ "Allows to create a global directory") - Create a global directory with accessible local business information of organizations in different countries, regions, cities, and neighborhoods.
* [Set listing prices with the Pricing Manager](https://wpgeodirectory.com/downloads/pricing-manager/ "Allows to monetize your directory") - Manage bids, taxes, and invoices for your top business listings with our free [Invoicing Plugin](https://wordpress.org/plugins/invoicing/ "Invoicing plugin for WordPress"). Enable/disable features per price.
* [Purpose your directory with Custom Post Types](https://wpgeodirectory.com/downloads/custom-post-types/ "Allows to extend your directory categorization") - Create additional content types like events, coupons, and offers to supplement multiple directories and help businesses get noticed. Offer the "locationless" option to filter for online businesses and websites.
* [Add events as a business listing option (NOW FREE)](https://wordpress.org/plugins/events-for-geodirectory/ "Adds an events manager to your directory") - Have people submit events and turn your GeoDirectory into a WordPress event calendar plugin. With CPT add-on installed, create as many events post types as needed.
* [Give viewers a run-down on a company's performance with MultiRatings and Reviews](https://wpgeodirectory.com/downloads/multiratings-and-reviews/ "Allows you to extend your rating and reviews categorization") - Extend the review system allowing multiple rating categories (e.g., service, quality, price), add images to reviews and other cool features.
* [Enhance search with advanced search filters](https://wpgeodirectory.com/downloads/advanced-search-filters/ "Allows you to extend the search with custom filters") -Turn any custom field into an advanced filter of the search widget for more accurate listings search. Adds AJAX search, smart autocompletes, geo location, and much more.
* [Build up a priceless community with the Buddypress Integration](https://wpgeodirectory.com/downloads/buddypress-integration/ "integrates Buddypress with GeoDirectory") - Engage users and form a community around your niche and listings with seamless integration with Buddypress (open-source social networking software package).
* [Hand over some editorial power to business owners with the Claim Listing Manager](https://wpgeodirectory.com/downloads/claim-manager/ "Allows users to claim their business") - Allow professionals to fine-tune their listings, add images, link to events, and show an 'owner-verified' badge on the listing. Now with the force upgrade/paid option.
* [Spot & pinpoint businesses easier with Marker Cluster](https://wpgeodirectory.com/downloads/marker-cluster/ "To avoid overcrowded maps") - Avoid cluttered maps by using numbered markers at high zoom levels. Now with super fast server-side clustering!
* [Duplicate alert](https://wpgeodirectory.com/downloads/ajax-duplicate-alert/ "Listing already exists?") - Send an alert to users when they add a submission with the same title as another to avoid spam listings.
* [Custom Map Styles](https://wpgeodirectory.com/downloads/custom-google-maps/ "Customize your maps look and feel") - Modify the look and feel of all Maps widgets via an intuitive user interface with color pickers and simple-to-use options.
* [Migrate listings from other sites with Social Importer](https://wpgeodirectory.com/downloads/social-importer/ "Import 1 listing at a time from Facebook, Yelp, Google My Business, and Trip Advisor!") - Import pages and events from Facebook and listings from Google My Business, Yelp, and Trip Advisor. One listing at a time, no bulk scraping.
* [Say Goodbye to spam listings with GD reCAPTCH](https://wpgeodirectory.com/downloads/gd-recaptcha/ "Stop spammers!") - Banish spam by adding the No CAPTCHA reCAPTCHA widget to any GeoDirectory form.
* [Manage multiple business locations with Franchise Manager]( https://wpgeodirectory.com/downloads/franchise-manager/ "Franchise Manager") - The faster, smarter way to submit listings on directory pages for business chains or franchises.
* [Create saveable lists with List Manager]( https://wpgeodirectory.com/downloads/list-manager/ "List Manager") - Give users the ability to create and save personal lists of businesses or events and make them public to other users for more productive searching.
* [WP All Import]( https://wpgeodirectory.com/downloads/wp-all-import/ "WP All Import") - Use the power of WP All Import to import your listings from anywhere with this add-on that integrates Wp All Import with GeoDirectory
* [Embeddable Ratings Badge]( https://wpgeodirectory.com/downloads/embeddable-ratings-badge/ "Embeddable Ratings Badge") - Let users embed their listing info with current ratings on their site, styled the way they want.
* [Compare Listings]( https://wpgeodirectory.com/downloads/compare-listings/ "Compare Listings") - Let your users compare listings side by side and compare vital info about the listings.
== ⚡ GO PRO - BECOME A MEMBER! ==
Get your hands on all the premium add-ons and themes and create an advanced Geo Directory. Sign up at [wpgeodirectory.com](https://wpgeodirectory.com/downloads/membership/ "Get GeoDirectory membership.").
== ⚡ SUPPORT ==
Get timely and friendly support for the Core Business Directory Plugin and add-ons at our [official website](https://wpgeodirectory.com/support).
== ⚡ WHAT'S NEW IN GEODIRECTORY V2.0? ==
Your friends at AyeCode work to continuously refine the best directory plugin in the market to keep customers happy. Here's what's new in the newest version:
* Extended Business Hours for listings
* Tab builder, to design the tabs of your listings as you wish by drag and drop
* Badge System, for "featured" listings, "new" listings, or to add whatever badge you want to your listings from any custom field.
* Rating Styles using FontAwesome icons.
* Custom Email Templates
* Guest Frontend Add Listing
* Improved SEO permalink settings.
== ⚡ CHECK OUT OUR DIRECTORY THEMES ==
* [Whoop! A Free Yelp Clone](https://wpgeodirectory.com/downloads/whoop/ "Free Yelp Clone")
* [Directory Starter - Free Directory Starter Theme](https://wpgeodirectory.com/downloads/directory-starter/ "A Free Starter Theme for custom designed directories")
* [Supreme Directory - A beautiful city directory](https://wpgeodirectory.com/downloads/supreme-directory/ "A Free Theme for city and local directories")
* [Listimia - 3rd party premium Business Directory Theme](https://wpgeodirectory.com/downloads/listimia/ "3rd party premium Theme")
== ⚡ FREE ELEMENTOR DIRECTORY TEMPLATES ==
* [GeoEvents - Events Directory with ticket marketplace](https://demos.ayecode.io/elementor-events-directory "Events portal with ticket marketplace")
* [Restaurants - Restaurant Directory Elementor Template](https://demos.ayecode.io/elementor-restaurants-directory "Restaurants Elementor Template")
* [Yoga Studios - Elementor PRO Yoga Studios directory](https://demos.ayecode.io/elementor-yoga-studio-directory "Elementor PRO Yoga Studios")
* [GeoHomes - Elementor PRO Real Estate Directory Theme](https://demos.ayecode.io/elementor-real-estate-directory/ "Elementor PRO Real Estate Theme")
* [GeoJobs - Elementor PRO Job Board Theme](https://demos.ayecode.io/elementor-jobs-directory "Elementor PRO Job Board Theme")
The same templates are available for the Kadence Theme with Gutenberg and the Kadence Block Plugin.
== Installation ==
= Minimum Requirements =
* WordPress 4.5 or greater
* PHP version 5.6 or greater
* MySQL version 5.0 or greater
= AUTOMATIC INSTALLATION =
Automatic installation is the easiest option. To automatically install GeoDirectory, log in to your WordPress dashboard, navigate the Plugins menu, and click Add New.
In the search field, type GeoDirectory, and click Search Plugins. Once you've found our business directory plugin, you install it by clicking Install Now. [GeoDirectory basic installation](https://docs.wpgeodirectory.com/category/7-installation)
= MANUAL INSTALLATION =
The manual installation method involves downloading our Directory plugin and uploading it to your webserver via your favorite FTP application. The WordPress codex will tell you more [here](https://codex.wordpress.org/Managing_Plugins#Manual_Plugin_Installation). [GeoDirectory basic installation](https://docs.wpgeodirectory.com/category/7-installation)
= UPDATING =
Automatic updates should work seamlessly. We always suggest you backup your website before any automated update to avoid unforeseen problems.
== Frequently Asked Questions ==
= What kind of business directory can be built with GeoDirectory =
Any Business Directory, for example:
Classified Ads
Store Locator
People Directory
Team Directory
Members Directory
Staff Directory
Hotels Directory
Doctors Directory
Therapist Directory
Restaurants Directory (Yelp Clone)
Bars & Nightlife Directory
Pets Directory
Church Directory
Travel Directory (Trip Advisor Clone)
Software review sites
Service providers Directory
Events Directory
Yellow Pages
Hiking Trails Directory
City Directory
And so much more.
But because GeoDirectory allows you to create any listing's type, each with unique custom fields, you can use GeoDirectory as an Event Calendar plugin, Real Estate Plugin, Job Board Plugin, Classified Ads plugin and much more.
= Can I use GeoDirectory for more than one city =
Yes, but you'll need our Location Manager add-on.
= Can users add and edit their listings via the front end? =
Absolutely yes, Users can submit their listings from the front end of your website and edit them unlimited times.
= Which theme is compatible with GeoDirectory? =
Any theme is compatible with GeoDirectory, and if you find any bug with a theme, ask for support, and we will fix it.
= Does GeoDirectory work with Elementor and other popular page builders? =
Yes, GeoDirectory works perfectly with any page builder, and we also have custom blocks for Gutenberg. Most GeoDirectory data is available via dynamic elements of Elementor PRO.
= Can I use GeoDirectory to list online businesses without addresses and maps? =
Yes, you can use GeoDirectory for businesses with a physical location and online businesses. To take advantage of this, you'll need the location manager add-on.
= May I have a free trial of the Premium Add-ons? =
We don't offer free trials, but we have a 30-day money-back guarantee if you are unhappy with our products or service.
== Screenshots ==
1. GeoDirectory Home Page.
2. GeoDirectory Listings Page.
3. GeoDirectory Listing Detail Page.
4. GeoDirectory Search Page.
5. GeoDirectory Front End Signup Page.
6. GeoDirectory Front End Listing Submission Page.
7. GeoDirectory WordPress Admin Page.
== Changelog ==
__WARNING: GDv2 is a significant update over GDv1 and may require manual work, such as adding widgets to sidebars to recreate your current layout. As always, we recommend trying this on a staging site first. [Learn more](https://docs.wpgeodirectory.com/article/260-upgrading-from-gdv1-to-gdv2)__
= GeoDirectory Business Directory Plugin v2.2.19 =
* Map directions link from listings is not working when multiple post map on the page - FIXED
* Move add listing JS in footer in backend - CHANGED
* Rank Math description meta snippet not replaces location vars - FIXED
* Changes for AUI Bootstrap 5 compatibility - ADDED
* GeneratePress blocks dynamic css not added on GD archive pages - FIXED
= GeoDirectory Business Directory Plugin v2.2.18 - 2022-11-09 =
* GD Single should show blank content when assigned empty elementor template - CHANGED
* Allowing to set comment author cookies option not working with reviews - FIXED
= GeoDirectory Business Directory Plugin v2.2.17 - 2022-11-02 =
* Tweak to permalinks order to fix some obscure 404 conditions - FIXED
* `Simple Archive` widget/block added for quick and easy setups - ADDED
* Editing search page via Elementor (free) can cause errors - FIXED
* Archive pages can be blank if Elementor (free) page template set to full width or canvas - FIXED
* GD Search page is not working when built with Elementor Free version- FIXED
* Logged out comments, website field should not be marked `required` - FIXED
* Published listing preview is not showing updated data - FIXED
* GD > Post Meta breaks output when showing stripped value for empty multiselect value - FIXED
= GeoDirectory Business Directory Plugin v2.2.16 - 2022-10-20 =
* Astra Pro page layout setting is not working for search page - FIXED
* Archive item Top and Bottom badge is not supporting custom badge - FIXED
* Radio field value is not saved with API request - FIXED
= GeoDirectory Business Directory Plugin v2.2.15 - 2022-10-13 =
* Yoast SEO breadcrumbs are not showing the default post category - FIXED
* Drag post images are not working on Safari browser - FIXED
* Customize > Widgets section doesn't show advanced settings toggle button - FIXED
* Map block only selectable via tree view - FIXED
= GeoDirectory Business Directory Plugin v2.2.14 - 2022-10-6 =
* Use WP function to avoid PHP compatibility issue - ADDED
* Option added to split the UK into England, Northern Ireland, Scotland & Wales to create a regional directory- ADDED
* Business Hours preview in GD Listings block looks broken - FIXED
* Classifieds Directory feature post notification is not translatable - FIXED
* SD and AUI packages updated to latest - UPDATED
* Add Listing page shows JS error on block theme - FIXED
* Support _featured_image & _post_images in as SEO variables - CHANGED
= GeoDirectory Business Directory Plugin v2.2.13 - 2022-09-29 =
* During import, it doesn't delete the previous attachment when adding the new attachment - FIXED
* Elementor Archive Item not rendered properly on best of listings widget - FIXED
* Allow playing video in popup from badge with AUI style - FIXED
= GeoDirectory Business Directory Plugin v2.2.12 - 2022-09-22 =
* Custom date is not saved with REST API when uses custom format - FIXED
* Business Hours post meta shows incorrect hours for today - FIXED
* Yoast SEO open graph image use category or post type default image as when no post image found - CHANGED
= GeoDirectory Business Directory Plugin v2.2.11 - 2022-09-12 =
* Custom date is not saved with REST API when uses custom format - FIXED
* Add route in REST API to add/update category & tag - ADDED
* Plugin `Page Optimizer` can break maps - FIXED
* OSM set address can sometimes use the county as the city - FIXED
= GeoDirectory Business Directory Plugin v2.2.10 - 2022-09-07 =
Report post popup doesn’t open on 2nd click once closed – FIXED
GeneratePress layout default setting not working on GD pages – FIXED
Elementor v3.5 deprecated actions break template loading – FIXED
Manual user location selection shows grey map on iPhone mobile – FIXED
Beaver Builder on archive item template causes infinite loop – FIXED
Allow to enter HEX color code in admin settings color options – CHANGED
The map shows no result when service_distance field is active – FIXED
Some jQuery version shows JS error on edit custom field – FIXED
Hook added to filter map geocode address search results – ADDED
TEXT field DB column data type does not change when data type changes in field settings – FIXED
= GeoDirectory Business Directory Plugin v2.2.9 - 2022-08-9 =
* Show actual DB error on custom field creation fail – CHANGED
* Add address fields support to gd_post_badge & gd_dynamic_content shortcodes – ADDED
* Use file src url as a badge link for file fields – CHANGED
* Meta from CPT settings are not translated with WPML – FIXED
* Backend edit listing form loads values from other post due to cache issue – FIXED
* Elementor module shows icon for empty GD field value – FIXED
* Bayesian rating sorting uses wrong average rating – FIXED
* GD > CPT Meta: option added to hide on non post type archive pages – ADDED
* Import settings sometimes shows error due to restricted json file type – FIXED
* GD > Listings: option added show nearest listings to the GPS – ADDED
* GD > Map: options added to hide street view & zoom controls on map – ADDED
= GeoDirectory Business Directory Plugin v2.2.8 - 2022-07-7 =
* Some timezone shows difference of day in a date for custom date format – FIXED
* Old Elementor image setting shows error – FIXED
* File limit not applied to GD > Post Meta when showing files – FIXED
* Re-order post images don’t detach previous featured post thumbnail – FIXED
* Schema validator shows error for Yoast SEO breadcrumb attribute – FIXED
* Generate Google API Key is no longer working – FIXED
* Exclude GD templates from The SEO Framework XML sitemap – FIXED
* Price field settings shows multiple thousand separator option – FIXED
* Yoast SEO noindex option is not working on single listing page – FIXED
* Hide active & admin edit only option for some default fields – FIXED
= GeoDirectory Business Directory Plugin v2.2.7 - 2022-05-26 =
* SEO title conflicts with SEOPress – FIXED
* GD > Loop option added to choose Elementor skin – ADDED
* Category field shows legacy radio input to set default category – FIXED
* Non GD pages shows blank meta description tag – FIXED
* GD > Post Badge don’t shows values in site date time format – FIXED
* Add listing file upload is not working on iOS Safari browser – FIXED
* No way to undo Classifieds/Real-Estate Sold status – FIXED
* Fast AJAX feature to speedup AJAX requests – ADDED
* Import address geocode not using set language – FIXED
* Better Messages plugin can cause PHP error if buddypress not installed – FIXED
= GeoDirectory Business Directory Plugin v2.2.6 - 2022-05-05 =
* Float value parsing shows comma with pl_PL locale – FIXED
* Elementor custom tag shows country name untranslated – FIXED
* GD events widgets not showing in elementor – FIXED
* Option added to hide search & near inputs in search form – ADDED
* AJAX search compatibility changes – ADDED
= GeoDirectory Business Directory Plugin v2.2.5 - 2022-03-28 =
* Neighbourhood SEO variable not working on single page – FIXED
* GD Categories widget option include categories is not working for child categories – FIXED
* Prevent add/delete column for reserved fields like city, region etc – CHANGED
* Unable to disable mouse scroll zoom on map – FIXED
* Default empty badge attribute shows nothing for default category badge – FIXED
* Set address on map makes Address Line 2 blank – FIXED
* GeoDirectory Elementor widgets not showing in searches – FIXED
* Backend settings textarea options strips HTML tags – FIXED
* Imported external linked image not working for og:image – FIXED
* Missing no rating class on listing grid – FIXED
* Option added in tags field to enable spell check – CHANGED
* Prevent activation redirect on plugin install during setup wizard – FIXED
* Tags & file required validation not working – FIXED
* Block Theme compatibility – ADDED
* Sort field cache not updated on field update – FIXED
* Street address not set properly for address within Japan – FIXED
* Email tags missing from below textarea – FIXED
* Price validation pattern looses slashes on save field – FIXED
* Comment notification rating allow variables – ADDED
= GeoDirectory Business Directory Plugin v2.2.3 - 2022-03-07 =
* CPT sorting unable to save descending order – FIXED
* Custom fields setting Price Options should not visible on all field types – CHANGED
= GeoDirectory Business Directory Plugin v2.2.2 - 2022-03-01 =
* CPT pages options show default option as a placeholder – CHANGED
* Select field required error option not working – FIXED
* Backend setting style broken for legacy mode – FIXED
= GeoDirectory Business Directory Plugin v2.2.1 - 2022-02-22 =
* Brave browser can cause API verify function to return false positive (warning added)- FIXED
* Place settings checkboxes not all showing correct setting – FIXED
* Setup wizard lightbox membership shows empty cart – FIXED/CHANGED
= GeoDirectory Business Directory Plugin v2.2 - 2022-02-22 =
* Long file names can cause overflow issues on mobile – FIXED
* Admin settings screen UI changed to AUI style (UI breaking change to older addons) – CHANGED
* Setup Wizard updated – CHANGED
* Block theme like Twenty Twenty Two don’t loads map scripts – FIXED
* Multiselect checkbox required error option not working – FIXED
* Chrome Autofill covers Google Autocomplete address search – FIXED
= GeoDirectory Business Directory Plugin v2.1.1.13 - 2022-01-27 =
* Hide new line break for empty address in post address – CHANGED
* WordPress v5.9 update breaks custom fields drag and drop – FIXED
= GeoDirectory Business Directory Plugin v2.1.1.12 - 2022-01-20 =
* Yoast SEO select2 conflicts on backend add listing page – FIXED
* Comment link from recent reviews don’t scrolls to comment – FIXED
* Hook added to filter preview action text – ADDED
* Report Post feature added – ADDED
* Map filter should not cover copyright text – FIXED
* GD > Recently Viewed is not working properly on SG Cached site – FIXED
* GD > Single Tabs does not scrolls to tab content – FIXED
* GD > Listings AJAX pagination don’t loads Kadence blocks CSS – FIXED
* Default category conditional field is not triggered on main category changed – FIXED
* Google map don’t populates region for some addresses within Greece – FIXED
* Address with comma and without line break – FIXED
* Avada builder sidebar setting is not working – FIXED
= GeoDirectory Business Directory Plugin v2.1.1.11 - 2021-12-07 =
* Date range is not working in date field – FIXED
* Elementor Pro theme builder doesn’t show GD layout types – FIXED
= GeoDirectory Business Directory Plugin v2.1.1.10 - 2021-12-02 =
* OpenStreetMap don’t populates region for Sweden – FIXED
* Avada builder not working for search page – FIXED
* Lazyload images don’t work in elementor popup – FIXED
* GD show/hide widget option not working on Widget Block – FIXED
= GeoDirectory Business Directory Plugin v2.1.1.9 - 2021-11-03 =
* GD > Badge is not showing default category link – FIXED
* Use category image title & caption on fallback image title & caption – CHANGED
* Preview option added to attachments icon to show attachment preview – ADDED
* GD > Dynamic Content is not working properly with block editor – FIXED
* GD > Post Address add option add link to show address on map – ADDED
* Prevent nested carousel in GD Listings – FIXED
* Option added to make a post address private – ADDED
* Schema issue for review – FIXED
* GD Simple Archive Item block added (not yet default) – ADDED
* Several blocks have more design options added – ADDED
= GeoDirectory Business Directory Plugin v2.1.1.8 - 2021-10-09 =
* Super Duper v2 causing some issues with builders that use widgets, rolled back to SDv1 to resolve – FIXED
= GeoDirectory Business Directory Plugin v2.1.1.7 - 2021-10-07 =
* Backend image editing broken due to error in minified JS file – FIXED
* Elementor Pro can cause fatal error with Super Duper v2 if widget called the v1 way – FIXED
= GeoDirectory Business Directory Plugin v2.1.1.5 - 2021-10-07 =
* Multiselect custom field checkbox type shows wrong color for required astrik – FIXED
* Dynamic condition shortcode not working for a new field – FIXED
* Classifieds/Real-estate Sold Functionality – ADDED
= GeoDirectory Business Directory Plugin v2.1.1.4 - 2021-09-28 =
* Near me map marker changes – CHANGED
* Don’t create custom field entry if DB column creation fails – FIXED
* Option added in GD > Categories to adjust card shadow – ADDED
* Sometimes CPT custom fields settings section rendered twice – FIXED
* fallback image for cat_image is not working – FIXED
= GeoDirectory Business Directory Plugin v2.1.1.3 - 2021-09-10 =
* Single post tab is not working when tab id starts with number – FIXED
* Unable to customize reviews template from child theme – FIXED
* Extra sanitization added to backend default location inputs – FIXED
= GeoDirectory Business Directory Plugin v2.1.1.2 - 2021-08-27 =
* Show alert if title, category fields are hidden & empty on submit add listing – CHANGED
* Best of & categories widgets AJAX params no longer using serialized data for location – CHANGED
* Sanitize email in output email field – FIXED
= GeoDirectory Business Directory Plugin v2.1.1.1 - 2021-08-26 =
* Show icon in CF setting when the field has hide conditions – CHANGED
* Improved backend sensitization changes – CHANGED
= GeoDirectory Business Directory Plugin v2.1.1.0 - 2021-08-24 =
* GD Categories & search blocks shows validation errors in console – FIXED
* Conditional fields feature for the custom fields for AUI style – ADDED
* Kadence starter templates page is broken when monthly schedule option is set – FIXED
* Caching improvements to enhance memory usage – CHANGED
* Fix conflicts with select2 library with BuddyBoss theme – FIXED
* Show/hide widget option not working with block widgets – FIXED
= GeoDirectory Business Directory Plugin v2.1.0.20 - 2021-08-04 =
* Distance to post badge don’t set direction on map from ajax loaded listing – FIXED
* Add listing page shows JS error when shortcode used with Elementor text editor – FIXED
* Fix conflicts with select2 library with BuddyBoss theme – FIXED
* Listing featured attachment permalink url is not working – FIXED
* Video shows extra padding on Divi theme – FIXED
* Images object cache not cleared on attachment update – FIXED
* [gd_post_meta] now supports the post link – ADDED
= GeoDirectory Business Directory Plugin v2.1.0.19 - 2021-07-28 =
* Hide select layout view button on non-GD layouts – FIXED
* Image slider & lightbox not working in map popup – FIXED
* Add listing zip required option no working with AUI – FIXED
* Region missing for address within Norway with OSM – FIXED
* GD > Listings widget carousel slider option added – ADDED
= GeoDirectory Business Directory Plugin v2.1.0.18 - 2021-07-14 =
* GD listings author page not working when author permalink contains custom link – FIXED
* Compatibility changes for Jetpack v8.1+ – CHANGED
* Map markers for custom loop filtering current location on single listing page – FIXED
= GeoDirectory Business Directory Plugin v2.1.0.17 - 2021-06-29 =
* Complianz | GDPR/CCPA Cookie Consent plugin integration added for GD maps – ADDED
* Show admin notices on GD pages templates for Divi Builder – ADDED
* Add listing map view field shows incorrect placeholder with AUI style – FIXED
* Prevents add listing form submit when latitude/longitude fields are hidden – FIXED
* Google XML sitemaps shows GD child term links hierarchically – FIXED
* Image displayed by [gd_post_meta] is not responsive – FIXED
* Post distance badge shows wrong distance when cache is active – FIXED
* Kadence theme single listing layout have no effect of page template settings – FIXED
* WP 5.8 block category filter updated as required – FIXED
* Post images slider shows unapproved comments images – FIXED
* Validate email address option in emails settings – FIXED
* GD > Listings block loads only 10 categories on CPT change – FIXED
* Post thumbnail title not updated for existing attachment – FIXED
* Deactivation survey popup added – ADDED
* Auto save custom field setting feature added – ADDED
* Redirect search page to search for default CPT listings – CHANGED
= GeoDirectory Business Directory Plugin v2.1.0.16 - 2021-06-09 =
* Progressbar not moving during the demo content installation step – FIXED
* Hook added to filter GeoDirectory admin menu capability – ADDED
* Admin users are not allowed to access wp-admin area when they contains restricted user role – FIXED
* Map param added to disable click on Google default places – ADDED
* WPEngine object cache sometime shows wrong link in published email – FIXED
* Lazy load map not loading on mobile until page scroll on listimia theme – FIXED
* Multi-select ‘gd-comma-list’ class dropping last element to new line – FIXED
* Tooltips not rendering HTML – FIXED
* [gd_post_images] option added to show images for specific post – ADDED
* AUI: unable to save empty value for multiselect/multicheckbox fields – FIXED
* Category image not added in Yoast SEO meta – FIXED
* Sometime ninja form don’t send notification to listing email – FIXED
* Disable beta addons setting on upgrade – CHANGED
* Map CPT filter only visible when search filter is active – FIXED
* Checkbox field description is not wrapped in a container ( Legacy design ) – FIXED
= GeoDirectory Business Directory Plugin v2.1.0.15 - 2021-05-13 =
* OpenStreetMap popup not working with AUI – FIXED
* Multi-select list out broken if not using ‘gd-comma-list’ class – FIXED
= GeoDirectory Business Directory Plugin v2.1.0.14 - 2021-05-11 =
* Overwrite by Rank Math don’t renders GD variables – FIXED
* v1 to v2 upgrade shows missing Events plugin – FIXED
* Post meta output `gd-comma-list` not working with bootstrap styles – FIXED
* Video screenshot linking to video lightbox does not work on single image output – FIXED
* Required field text not showing for checkbox – FIXED
* Import GD elementor templates not working – FIXED
* Brivona theme & Zeen theme Tipi Builder compatibility – FIXED
* Rating not updated when SG optimizer cache is active – FIXED
* Add listing child categories checkbox not showing left padding on frontend – FIXED
* Make new field by default ticked active in field setting – CHANGED
* Show loading effect on map popup when click on marker – ADDED
* Value not saved for the field which contains integer as field name – FIXED
* Pagination looks messed in mobile devices – FIXED
= GeoDirectory Business Directory Plugin v2.1.0.13 - 2021-04-19 =
* Small fix for the way some addresses are geocoded if “postal_town” is present – FIXED
* Borlabs Cookie plugin integration added for GD maps – ADDED
* Chrome prevents saving integer number for upload max size – FIXED
= GeoDirectory Business Directory Plugin v2.1.0.12 - 2021-04-07 =
* GD > Categories option added to choose image size – ADDED
* Frontend delete listing don’t prompt any response message with AUI – FIXED
* Option added GD > Loop Actions to hide layouts for frontend list view – ADDED
* Elementor Them Builder layout preview image missing for GD Elementor templates – FIXED
* Photos gallery opens multiple lightbox if Elementor is active – FIXED
* Unable to save max upload size in decimal – FIXED
* Allow to set marker z-index via hook – ADDED
* Tool added to removed unused GDv1 options – ADDED
= GeoDirectory Business Directory Plugin v2.1.0.11 - 2021-03-23 =
* Conflict of select2 basic version loaded – FIXED
* Brizy page builder compatibility – ADDED
* Featured field always shows checked – FIXED
* GD > Recent Reviews option added to filter reviews by post id – ADDED
* GD > Categories icon color not working with icon top design – FIXED
* Map marker hover bounce not working on lazy load map – FIXED
* Cat filter on map breaks the design – FIXED
* GD > Best of listings widget don’t show empty categories – CHANGED
* UpSolution Core plugin compatibility – ADDED
* Hook added to extend “Admin Only” edit visibility to other user roles – ADDED
* Field to filter posts by Service Distance added – ADDED
* Allow geodirectory template override from theme directory – ADDED
* Some database with pxc_strict_mode prevents insert review without primary key – FIXED
* Tabs list with kadence theme might not scroll on first click – FIXED
* Tabs list as pills does not switch active class – FIXED
* Custom field price options are working properly – FIXED
= GeoDirectory Business Directory Plugin v2.1.0.10 - 2021-03-03 =
* Show x stars back instead of rating type name on hover of ratings – CHANGED
* Field description is missing for radio/checkbox multiselect fields – FIXED
* Tool added to regenerate thumbnails for the post images – ADDED
* Map can no longer be moved if no records found message shown – FIXED
* Elementor loop shows wrong post class for first element – FIXED
* Featured field shows checked for empty value when default set to checked – FIXED
* GD Listings elementor skin element missing background image – FIXED
* Add post ID in gd_post_meta,gd_post_badges and gd_dynamic_content – ADDED
= GeoDirectory Business Directory Plugin v2.1.0.9 - 2021-02-24 =
* Show markers for custom Elementor posts loop not working – FIXED
* Export CSV opens in browser instead of download on some sites – FIXED
* Search keyword don’t matches with the word start with new line character – FIXED
* Category checkbox hierarchy no longer showing option to set default category with AUI – FIXED
* Show rating type name on hover of ratings instead of x stars. – ADDED
* Image of screenshot of youtube link will now open in lightbox if link to iframe lightbox selected – ADDED/CHANGED
* Pending post shows 404 to logged in post author – FIXED
* OpenGraph settings not working properly with recent Yoast SEO – FIXED
= GeoDirectory Business Directory Plugin v2.1.0.8 - 2021-02-09 =
* Sometimes published email shows broken post link when cache is enabled – FIXED
* Badge class not added to post class with AUI Bootstrap style – FIXED
* Add setting to allow users to set no. of tags to show in tags list in add/edit listing form – ADDED
* Listings shows comments even comments are disable for post type – FIXED
* Listing post image shows link icon on top of the image – FIXED
* Allow to filter Recent Reviews by author – ADDED
* Fix for some UK regions being wrong from Google API – FIXED
* Create missing pages tool not working if menu item with same slug exists – FIXED
* Add filter for changing distance – ADDED
* GD > Ninja Forms Gutenberg background color issue – FIXED
* Map don’t shows correct results filtered by GPS – FIXED
* Yoast taxonomies default nonindex setting not working for GD terms – FIXED
* Allow HTML tags in video field – CHANGED
* WP Rocket new JS deffer feature breaking GD variables – FIXED
* Compatibility changes for Avada and Kleo themes using bootstrap 3 to work with new AUI styles – CHANGED
* Custom field user defined validation is not working with AUI – FIXED
* Divi theme builder custom page template layout for search page breaking the search result layout – FIXED
= GeoDirectory Business Directory Plugin v2.1.0.7 - 2021-01-13 =
* OpenStreetMap routing add more languages support including Russian language – CHANGED
* Listing sets CPT default image instead of category default image as fallback – FIXED
* Listing generate image alt attribute when empty to prevent web accessibility issue – CHANGED
* Add missing translation for file upload field – FIXED
* Images can now store full URL for external images – ADDED
* Detail page lightbox next/previous link not working with WP v5.6 & jQuery v3.5.x for legacy style – FIXED
* Business hours show single day times with [gd_post_meta] shortcode – ADDED
* Images can now store full URL during import for external images – ADDED
* %%post_count%% shows null when no post found – CHANGED
* GD Listings pagination not working when with_pics_only enabled – FIXED
* Map marker not bouncing when OpenStreetMaps enabled with AUI Bootstrap style – FIXED
* Option added to allow to add listing outside default city – ADDED
* Clear existing map route when searched with a new route – FIXED
= GeoDirectory Business Directory Plugin v2.1.0.6 - 2020-12-11 =
* Detail page image slider is not working with Divi theme – FIXED
* Default category always shows first option selected with Bootstrap style – FIXED
* Unable to translate street field default placeholder – FIXED
* Elementor custom skin loop overwrites $wp_query – FIXED
* Search form AUI does not keep padding margins when CPT select changed – FIXED
* Backend re-arrange post images order not working with AUI – FIXED
* Classifieds dummy data not using blocks when Gutenberg in use – FIXED
* Category widget now has option to align items of partial rows – ADDED
* Review output avatar now set as position relative to prevent theme CSS breaking alignment – CHANGED
* Map on set manual location popup not working with lazy load – FIXED
* Multiselect checkbox field with AUI is not working in add listing – FIXED
* GD Listings pagination next page link is not working with AUI style – FIXED
= GeoDirectory Business Directory Plugin v2.1.0.5 - 2020-11-12 =
* JavaScript error breaks Divi visual builder when bootstrap style enabled – FIXED
* Edit image title/caption is not working in backend edit post page – FIXED
* Lightbox gallery on mobile can vertically stretch images – FIXED
* Avada Builder not compatible with new AUI styles, revert to legacy styles if active – FIXED
* Map bounce on listing hover is not working with bootstrap style – FIXED
* Lightbox gallery on mobile can vertically stretch images – FIXED
* Added filters to search input arguments – ADDED
* Divi visual editor shows “field key is missing” for badge – FIXED
* Reviews, link to author profile instead of author URL input – CHANGED
* Embedded videos not responsive in AUI styles – FIXED
* Map show markers for wrong Elementor loop – FIXED
* Fix import csv error “Sorry, this file type is not permitted for security reasons.” – FIXED
* Near search not working when lazy load map active and no map on the page – FIXED
= GeoDirectory Business Directory Plugin v2.1.0.4 - 2020-10-27 =
* Load categories on map via AJAX – CHANGED
* Map with full page width shows scroll bar when toggle categories – FIXED
* OpenStreetMap add touchZoom map option – ADDED
* Preview page is not showing post images & tabs on Listimia theme – FIXED
* Kleo theme, remove force legacy styles if version >= 4.9.170 – CHANGED
* Video fields now support image screenshots in the GD > Post Images widget eg: video_screenshot – ADDED
* Category archive map shows all markers from category on bootstrap style – FIXED
* Some svg map markers are not resized due to unknown dimensions unit – FIXED
* Package category limit validation is not working – FIXED
* OpenStreetMap disable single finger dragging on touch devices – CHANGED
= GeoDirectory Business Directory Plugin v2.1.0.3 - 2020-10-14 =
* Kleo & Listimia themes not compatible with new AUI styles, revert to legacy styles if active – FIXED
* Hide latitude/longitude still shows field labels – FIXED
* Business Hours field input mobile compatibility – FIXED
= GeoDirectory Business Directory Plugin v2.1.0.2 - 2020-10-12 =
* Sort by options in GD > Listings widget not updating with post type change – FIXED
* Hummingbird object cache does not clears feature image cache – FIXED
* Post distance is not showing rounded value – FIXED
* Post images slider do not covers full width when only one image to display – FIXED
* GD ninja forms widget tries to open wrong lightbox for non AUI – FIXED
* Issue in save multiselect values with bootstrap active – FIXED
* Recent reviews widget image not rounded – FIXED
* Lazyload map category images natively – CHANGED
* Category widget CPT switcher not retaining all AUI styles on AJAX load – FIXED
= GeoDirectory Business Directory Plugin v2.1.0.0 - 2020-10-08 =
* AyeCode UI Bootstrap design – ADDED
* GD Archive template not rendered correctly for Enfold Builder – FIXED
* Only main image rotated if needed, smaller sizes fail to rotate based on metadata – FIXED
* Sometime zip field looses the value on select autocomplete address – FIXED
* Replace jQuery deprecated load() function – CHANGED
* Genesis don’t show comments when rating stars disabled – FIXED
* Elementor list icons fallback #hide not working with latest elementor – FIXED
* Default page content will now use blocks if block editor is enabled – CHANGED
* Tab nav changes for pagespeed FCP – CHANGED
* Don’t lazyload first image on slider on details page for better pagespeed scores – CHANGED
* Lazy Load map feature added – ADDED
* Events – upcoming filter not working on Best of widget – FIXED
= GeoDirectory Business Directory Plugin v2.0.0.101 - 2020-08-27 =
* Elementor dynamic tag style is not working with Elementor v3 – FIXED
= GeoDirectory Business Directory Plugin v2.0.0.100 - 2020-08-26 =
* Scroll to sticky map jumps the page – FIXED
* Allow %%category%% & %%in_category%% on search page meta titles – CHANGED
* Set viewport width & height in mshots screenshot generator for images – CHANGED
* Resize marker does not supports .svg images – FIXED
* Update to Elementor 3.x brakes archive pages – FIXED
= GeoDirectory Business Directory Plugin v2.0.0.99 - 2020-08-11 =
* Hide frontpage & blog page from select GD pages dropdown list – CHANGED
* WordPress v5.5 compatibility changes – CHANGED
* Yoast SEO 14+ renders single listing as a noindex if all pages set to noindex – FIXED
* Clear LeafLet deprecated warnings – CHANGED
= GeoDirectory Business Directory Plugin v2.0.0.98 - 2020-07-30=
* OpenStreetMap don’t populates region for Bermuda – FIXED
* GD Listings filter posts by current category/tag – ADDED
* Unable to select exact time in timepicker on touch screen device – FIXED
* Publish post email not sent to user after publishing scheduled post – FIXED
* The7 theme shows wrong content on empty search results page – FIXED
* Add listing unable to tick radio buttons on RTL language due to BuddyBoss conflicts – FIXED
* Limit max. number of CPT posts per user – ADDED
* Leaflet map JavaScript library updated to 1.6.0 – CHANGED
= GeoDirectory Business Directory Plugin v2.0.0.97 - 2020-07-16 =
* Adjust timezone for listings saved with different offset for same timezone – FIXED
* Allow to setup separate add listing page for each CPT – ADDED
* Rank Math breadcrumb shows multiple categories on detail page – FIXED
* Review reply/cancel reply links are not working on touch screen devices – FIXED
* Some themes don’t load comment reply JS on GD single page – FIXED
* Featured image field not updated on delete all images – FIXED
* GD Listings pagination don’t renders WPBakery Page Builder shortcodes – FIXED
* BuddyPress v6.0.0 compatibility – CHANGED
* Auto save don’t saves all images when image upload is in progress – FIXED
* Address within Brussels, Belgium don’t retrieves region name – FIXED
* Business Hours UI changes for small screen devices – CHANGED
* GD Listings pagination on detail page don’t filter category – FIXED
= GeoDirectory Business Directory Plugin v2.0.0.96 - 2020-07-1 =
* Option added to make zip/post code as a required field – FIXED
* The Open Graph image does not work from geodirectory categories – FIXED
* Skip duplicate slug checking for WP post categories & tags – CHANGED
* Compatibility for rankmath breadcrumb – FIXED
* Divi search template shows archive item in multiple loop – FIXED
* Add listing page is not working properly with Divi page builder – FIXED
* Business hours timezone input replaced with timezones string list – CHANGED
* Elementor GD CSS Hide Condition is not working with post_images key – FIXED
* Listing reviews pagination not working with some permalink structure – FIXED
* Map shows wrong markers when distance filter is active – FIXED
* Filter added to resize map marker icons – ADDED
* Allow to set zoom and map center when no results found – ADDED
* [gd_post_badge] is not working with post_images field – FIXED
* Text changes for Elementor Template Publish Settings – CHANGED
* Add Filter to change submit listing button text – FIXED
= GeoDirectory Business Directory Plugin v2.0.0.95 - 2020-06-9 =
* Changes for Ninja Forms fix related to API requests – CHANGED
* [gd_post_meta] add support for default category & post status – ADDED
* [gd_post_meta] allow option to show icon only – ADDED
* GD > Recently Viewed now supports Elementor pro skins – ADDED
* Should not send comment email notification to author for spam comment – CHANGED
* OSM Directions API changed to non SSL temporarily to fix their certificate error – CHANGED
* [gd_post_badge] is_greater_than condition is not working with post date – FIXED
* Elementor Image dynamic field fallback image not working – FIXED
* Elementor Pro search template conditions added for specific CPTs – ADDED
* Elementor GD Archive Item template dynamic background & style is not working – FIXED
* Schema list updated to add some new types – ADDED
* Add ID in nav endpoints to avoid notice – ADDED
* Dynamic content widget does not validates fields excluded from package – FIXED
* GD custom field SEO variables not working in Yoast meta title & description – FIXED
* Warning added to setting `Allow posting without logging in` when WP Engine hosting is used that an extra step is needed – ADDED
= GeoDirectory Business Directory Plugin v2.0.0.94 - 2020-05-20 =
* Image lightbox can show image id if title is empty – FIXED
* Switching package shows all images instead of package image limit – FIXED
* Able to set default zoom level on add listing page map – ADDED
* City, region names with Greek characters causes issue in meta title – FIXED
* AyeCode Connect plugin added in recommend plugins list – ADDED
* GD > Post meta for overall_rating is now rounded to one decimal place (raw value still available) – CHANGED
* Titles and meta value for overall_rating is now rounded to one decimal place – CHANGED
* GD > Post Images, when using screenshots from custom fields, screenshots can now link to different URL value – ADDED
* Iphone ratings sometimes not able to set rating if text size of rating makes the rating jump between lines when changed – FIXED
* select2 dropdown style conflict after Yoast 14.1 – FIXED
* Constrain the proportions on preview of uploaded image – FIXED
= GeoDirectory Business Directory Plugin v2.0.0.93 - 2020-05-12 =
* Elementor archive items not always given an ID so sometime map is not limited to current listings – FIXED
* Image title & caption with apostrophes shows slash after saved – FIXED
* Elementor social icons phone number displays even when empty – FIXED
* Oxygen page builder can’t edit the add listing page because of redirect – FIXED
* Add GD variables to the Yoast extra replacements – ADDED
* Elementor icon list fallback value #hide not working on archive pages – ADDED
* [gd_page_title] shortcode/widget added to show page title on GD pages – ADDED
* Fix for one comment restriction for cookie not enable case – FIXED
* GD pages with Divi builder breaks header – FIXED
* Translated GD screen id may break admin pages UI – FIXED
* Form containing email & password fields has unique id – FIXED
* Add body class geodir-page-cpt-POST_TYPE on search page – ADDED
= GeoDirectory Business Directory Plugin v2.0.0.92 - 2020-05-1 =
* Static map sometimes not resizing on mobile view – FIXED
* Fix recent review filter by location – FIXED
* Rank Math sitemap shows 404 error after each GeoDirectory plugin update – FIXED
* Yoast SEO v14.4 compatibility changes – FIXED
= GeoDirectory Business Directory Plugin v2.0.0.91 - 2020-04-30 =
* Category font awesome icons have extra fas class on output which break few icons – FIXED
* Post badge widget shows excluded fields from package – FIELD
* GD Archive map with elementor loop might not filter markers if map is before loop – FIXED
* Translation of screen_id break GD dashboard functionality – FIXED
* YOOtheme shows incorrect title on GD pages – FIXED
* Badge label shows option value instead of option label for select type field – FIXED
* Option added to restrict user to submit one review per post – ADDED
* Yoast SEO v14.x compatibility changes – FIXED
= GeoDirectory Business Directory Plugin v2.0.0.90 - 2020-04-22 =
* Customize map popup template for the post type – ADDED
* Detail page tabs & dropdown is not working on mobile device – FIXED
* GD > Listings widget elementor skin select not working – FIXED
* Use default location offset as a business hours default offset – CHANGED
* Response header shows 404 status when on results found on GD search page – FIXED
= GeoDirectory Business Directory Plugin v2.0.0.89 - 2020-04-16 =
* Badge shortcode for file field %%input%% return file array – FIXED
* Yoast SEO OpenGraph meta not working on GD pages – FIXED
* Elementor Pro Utils class moved which can cause errors in older vers of Elementor – FIXED
* Elementor Icon List items can be hidden when empty by adding fallback of #hide – ADDED
* Elementor Star Rating needs to be rounded to one decimal place – FIXED
* Elementor CSS hide conditions now remove content instead of just hiding with CSS – CHANGED
= GeoDirectory Business Directory Plugin v2.0.0.88 - 2020-04-14 =
* Comment images can now be used in Elementor Pro galleries – ADDED
* Post Images widget can show logo if not specifically set not to – FIXED
= GeoDirectory Business Directory Plugin v2.0.0.87 - 2020-04-10 =
* Allow show / hide categories in GD > Categories widget – ADDED
* Incorrect validation message attribute on url type custom fields – FIXED
* GD > Listings widget can now use Elementor Pro Archive item template – ADDED
= GeoDirectory Business Directory Plugin v2.0.0.85 - 2020-04-08 =
* Embed post not working for GD listing – FIXED
* Add address fields in post meta keys list – ADDED
* [gd_cpt_meta] widget/shortcode added to show cpt meta title, meta description, description, image etc – ADDED
* Check edit listing page & add body class for add/edit listing page – ADDED
* Show image caption and title based on setting – FIXED
* Elementor pro form widget now supports “GD Email Listing” action – ADDED
* Elementor CSS Class display options to be able to hide content dependent on field values – ADDED
* Elementor templates now updated via API call – CHANGED
= GeoDirectory Business Directory Plugin v2.0.0.84 - 2020-04-02 =
* Listing Widget – Exclude Current Post – FIXED
* GD title is not working on beaver themer archive template – FIXED
* Font awesome settings icons updated to 5.13.0- UPDATED
* Add body class on add listing, location & archive pages for empty results – ADDED
* Fix add listing shortcode validation on status report – FIXED
* Detail tabs not working on small screens – FIXED
* Elementor number dynamic tags support added – ADDED
* Elementor dynamic content, added some more hidden raw fields – ADDED
* Elementor rating widget support added – ADDED
* Elementor gallery widget support added – ADDED
* Elementor dynamic color tag support added – ADDED
* Elementor pro gallery widget support added – ADDED
* Elementor pro image carousel widget support added – ADDED
* Elementor pro theme builder types added for greater control – ADDED
* Lity lightbox image slideshow shows different image size for some slides – FIXED
* Option added to disable comments for post type – ADDED
* Save to favorites now has custom color and icon options – ADDED
* A couple of simple Elementor templates added for testing – ADDED
= GeoDirectory Business Directory Plugin v2.0.0.83 - 2020-03-23 =
* 150 new Schema types added to category options ( including new CovidTestingFacility ) – ADDED
* New temp_closed pre-defined field for setting listing as temporarily closed – ADDED
* Set business hours as closed and show a business closed message on the details page if temp_closed is set – ADDED
= GeoDirectory Business Directory Plugin v2.0.0.82 - 2020-03-21 =
* Added GenerateBlocks plugin compatibility – ADDED
* Search with category and tag keyword combination not showing correct results – FIXED
* Avada theme blog global sidebar issue – FIXED
* Placeholder for select custom fields is not working – FIXED
* Yoast SEO Premium prominent words break internal linking feature – FIXED
* Listing detail child tab not rendering shortcode – FIXED
* Improve search functionality – CHANGED
* Business hours parsing the wrong TZ when GMT offset is set to 0 – FIXED
* File limit not working for the custom field – FIXED
* Add field visibility check for email in ninja form widget – FIXED
* Allow showing a raw field value with gd_post_meta – CHANGED
* Elementor dynamic content support – ADDED
* Advanced DB Default option added for when adding new custom field – ADDED
* Changes for scheme Event Status – CHANGED
* Image function can add wrong sizes to image tag – FIXED
= GeoDirectory Business Directory Plugin v2.0.0.81 - 2020-03-04 =
* Remove title/meta-variables not related to location page – CHANGED
* Translation missing in OSM map routing search input description – FIXED
* Style issues on iphone – FIXED
* Show video file in HTML5 media format – ADDED
* Divi theme builder template compatibility – FIXED
* Filter added to customize Google map marker animation – ADDED
* Near search not clearing GPS when only core is active – FIXED
* Show “time ago” for post date – ADDED
= GeoDirectory Business Directory Plugin v2.0.0.80 - 2020-02-27 =
* Unable to save empty value for date field – FIXED
* Porto theme compatibility – FIXED
* Export post edit date value in CSV – ADDED
* AyeCode Connect notice now shows on extensions pages – ADDED
* Genesis theme simple menus & simple sidebars compatibility – ADDED
* Page Builder Framework theme compatibility – ADDED
= GeoDirectory Business Directory Plugin v2.0.0.79 - 2020-02-15 =
* OceanWP theme & Elementor plugin compatibility – FIXED
* Ninja Forms still have not fixed their bug, we have added a more permanent fix until they fix it – FIXED
* Recipe schema option added – ADDED
= GeoDirectory Business Directory Plugin v2.0.0.77 - 2020-02-12 =
* Avada v6.2 theme compatibility – FIXED
= GeoDirectory Business Directory Plugin v2.0.0.76 - 2020-02-06 =
* Location page og:url for rank math – FIXED
* File field shows required field error twice – FIXED
* GD Listings widgets should show pending listings on author page – CHANGED
* Ninja Forms recent update breaks maps & API requests – FIXED
= GeoDirectory Business Directory Plugin v2.0.0.75 - 2020-01-29 =
* Longitude validation fails to validate longitude with minus sign – FIXED
* Static map loads Google Map API even OSM API is enabled – FIXED
* Show formatted post date & post modified date in a badge – ADDED
* Twenty Twenty theme show 404 when no results found on search page – FIXED
* Post preview is not working for listing with status pending – FIXED
* Ninja Forms deprecated version with GeoDirectory shows blank page on site – FIXED
* Dynamic Content widget added for output of dynamic html or shortcodes – ADDED
* OceanWP theme shows incorrect titles on GD archive pages – FIXED
* Sometimes pagination & feed not working on category pages – FIXED
* Search with apostrophe on mac iOS device shows empty results – FIXED
* Search page meta title shows duplicate “Near” string – FIXED
* archive map show all posts param not working- FIXED
* Fix class name typo for geodir-dashboard class – FIXED
= GeoDirectory Business Directory Plugin v2.0.0.74 - 2019-12-19 =
* Ninja Forms bug can cause PHP warnings on search page – TEMP FIX ADDED