forked from AyeCode/geodirectory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
change_log.txt
1491 lines (1349 loc) · 83.1 KB
/
change_log.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
= 2.2.17 =
* 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
= 2.2.16 =
* 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
= 2.2.15 =
* Yoast SEO breadcrumbs is not showing default post category - FIXED
* Drag post images is not working on Safari browser - FIXED
* Customize > Widgets section don't show advanced settings toggle button - FIXED
* Map block only selectable via tree view - FIXED
= 2.2.14 =
* Use WP function to avoid php compatibility issue - ADDED
* Option added to split UK into England, Northern Ireland, Scotland & Wales - ADDED
* Business Hours preview in GD Listings block looks broken - FIXED
* Classifieds 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
= 2.2.13 =
* During import it don't deletes previous attachment when adding the new attachment - FIXED
* Elementor Archive Item not rendered properly on best of listings widget - FIXED
* Allow to play video in popup from badge with AUI style - FIXED
= 2.2.12 =
* 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
= 2.2.11 =
* 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
= 2.2.10 =
* Report post popup don't open on 2nd click once closed - FIXED
* GeneratePress layout default setting not working on GD pages - FIXED
* Elementor v3.5 deprecated actions breaks 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 not changes when data type changed in field settings - FIXED
= 2.2.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
= 2.2.8 =
* 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
= 2.2.7 =
* 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
= 2.2.6 =
* 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
= 2.2.4 =
* 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
= 2.2.3 =
* CPT sorting unable to save descending order - FIXED
* Custom fields setting Price Options should not visible on all field types - CHANGED
= 2.2.2 =
* 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
= 2.2.1 =
* 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
= 2.2 =
* 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
= 2.1.1.13 =
* Hide new line break for empty address in post address - CHANGED
* WordPress v5.9 update breaks custom fields drag and drop - FIXED
= 2.1.1.12 =
* 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
= 2.1.1.11 =
* Date range is not working in date field - FIXED
* Elementor Pro theme builder doesn't show GD layout types - FIXED
= 2.1.1.10 =
* 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
* BuddyBoss breaks some dropdowns such as business hours - FIXED
* Allow adding listings outside default location now the default option - CHANGED
* Classifieds archive item page template data broken - FIXED
= 2.1.1.9 =
* 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
= 2.1.1.8 =
* Super Duper v2 causing some issues with builders that use widgets, rolled back to SDv1 to resolve - FIXED
= 2.1.1.7 =
* Backend image editing broken due to error in minified JS file - FIXED
* Output location block does not have default value set, meaning value must be changed to work initially - FIXED
* Elementor Pro can cause fatal error with Super Duper v2 if widget called the v1 way - FIXED
= 2.1.1.5 =
* 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
= 2.1.1.4 =
* 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
= 2.1.1.3 =
* 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
= 2.1.1.2 =
* 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
= 2.1.1.1 =
* Show icon in CF setting when the field has hide conditions - CHANGED
* Improved backend sensitization changes - CHANGED
= 2.1.1.0 =
* 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
= 2.1.0.20 =
* 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
= 2.1.0.19 =
* 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
= 2.1.0.18 =
* 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
= 2.1.0.17 =
* 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
= 2.1.0.16 =
* 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 doesn'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
= 2.1.0.15 =
* OpenStreetMap popup not working with AUI - FIXED
* Multi-select list out broken if not using 'gd-comma-list' class - FIXED
= 2.1.0.14 =
* 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
= 2.1.0.13 =
* 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
= 2.1.0.12 =
* 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
= 2.1.0.11 =
* 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
= 2.1.0.10 =
* 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
= 2.1.0.9 =
* 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
= 2.1.0.8 =
* 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
= 2.1.0.7 =
* 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
= 2.1.0.6 =
* 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
* Map Category select overflow not scrolling - 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
= 2.1.0.5 =
* 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
= 2.1.0.4 =
* 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
= 2.1.0.3 =
* 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
= 2.1.0.2 =
* 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
= 2.1.0.0 =
* 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
= 2.0.0.102 =
* Avada page builder don't render header on GD Archive pages - FIXED
* %%term_title%% is not working in Yoast SEO meta title for tags - FIXED
* GD Categories current post type filter is not working on search page - FIXED
* GD Details sidebar not working with Astra theme custom template - FIXED
* Unable to translate GD Ninja Form action text - FIXED
* ElementorPro single listing tab does not scroll to tab content on mobile - FIXED
= 2.0.0.101 =
* Elementor dynamic tag style is not working with Elementor v3 - FIXED
= 2.0.0.100 =
* 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 broken the site - FIXED
= 2.0.0.99 =
* 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
= 2.0.0.98 =
* 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
= 2.0.0.97 =
* 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
= 2.0.0.96 =
* 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
= 2.0.0.95 =
* 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
= 2.0.0.94 =
* 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
= 2.0.0.93 =
* 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
= 2.0.0.92 =
* 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
= 2.0.0.91 =
* Category font awesome icons have extra fas class on output which break few icons – FIXED
* Post badge widget shows excluded fields from package - FIXED
* 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
= 2.0.0.90 =
* 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
= 2.0.0.89 =
* 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
= 2.0.0.88 =
* Comment images can now be used in Elementor Pro galleries - ADDED
* Post Images widget can show logo if not specifically set not to - FIXED
= 2.0.0.87 =
* 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
= 2.0.0.85 =
* 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
= 2.0.0.84 =
* 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
= 2.0.0.83 =
* 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 business closed message on details page if temp_closed is set - ADDED
= 2.0.0.82 =
* 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 breaks internal linking feature - FIXED
* Listing detail child tab not rendering shortcode - FIXED
* Improve search functionality - CHANGED
* Business hours parsing wrong TZ when GMT offset is set to 0 - FIXED
* File limit not working for custom field field - FIXED
* Add field visibility check for email in ninja form widget - FIXED
* Allow to show field raw 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
= 2.0.0.81 =
* 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
= 2.0.0.80 =
* 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
= 2.0.0.79 =
* 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
= 2.0.0.77 =
* Avada v6.2 theme compatibility - FIXED
= 2.0.0.76 =
* 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
= 2.0.0.75 =
* 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
* GD search page is not loading with Divi page builder - FIXED
= 2.0.0.74 =
* Ninja Forms bug can cause PHP warnings on search page - TEMP FIX ADDED
* Map marker popup is not working for non-logged users with WP 5.3.1 - FIXED
= 2.0.0.72 =
* REST API rating stars & images upload not working - ADDED
* Elementor archive title element not rendering correct title on GD pages - FIXED
* Not able to setup GD search page with recent Divi page builder - FIXED
* JS variable conflict with Rank Math plugin - FIXED
* Listing details shows wrong sidebar on Avada FusionBuilder - FIXED
* Map marker popup not working for non-logged users when WPEngine cache is enabled - FIXED
* Post content shortcode looping when Newspaper theme & tagDiv addons active - FIXED
* Ninja Forms bug can cause PHP warnings to show in API response which can break some maps functionality - TEMP FIX ADDED
= 2.0.0.70 =
* REST API allow search posts by GPS, IP and near address - ADDED
* GD Search Themer Layout overwrites the WordPress search page - FIXED
* Decode special character in email title - FIXED
* Limit embed wrap to videos - CHANGED
= 2.0.0.69 =
* Fixed some W3 validation issues - FIXED
* Admin tooltips can break image upload buttons - FIXED
= 2.0.0.68 =
* Validate register user during add listing from frontend - FIXED
* Enfold theme default layout & sidebar settings is not working - FIXED
* WPML translation not working for strings defined via variable - FIXED
* Custom field date shows un-translated date - FIXED
* Option added to set post images widget title - ADDED
* Option added in map widget/shortcode to tick/untick categories on the map - ADDED
* Exclude GD template pages from Yoast XML page sitemap - ADDED
* Rank Math SEO not detecting GD fields - FIXED
* Add listing by logged out user not working in incognito mode - FIXED
* Rescue category redirect url adds location twice - FIXED
* %%in_location_single%% is not working on detail page meta title - FIXED
* Map widget/shortcode doesn't show filtered listings on non GD pages - FIXED
* Post badge add support for post modified date - ADDED
* ffmp theme shows incorrect titles on GD pages - FIXED
* Ninja contact form sometimes not finding the post id and email fails - FIXED
* Better integration with Fusion builder, all items now also fusion items - ADDED
= 2.0.0.67 =
* Fail to save feature image for new listing when post revision is enabled - FIXED
* Post link not working in email sent to admin on post edit - FIXED
* Post badge does not supports category and tags - FIXED
* Option added in gd_categories widget/shortcode to CPT title - ADDED
* Rank Math SEO option overwrites Yoast SEO option - FIXED
* Filter GD Categories widget get terms args - ADDED
* Rank Math plugin sitemap image count wrong for GD listings - FIXED
* Post Images widget now has `fallback_types` that can be set - ADDED
* Post Images widget can now generate screenshots of url fields by appending `_screenshot` eg: website_screenshot - ADDED
* Delete subsite removes data from main site on multisite network - FIXED
* CPT type post class not set to ajax listings - FIXED
* Custom field accepts script tags - FIXED
* Business hours option added to show next day closing - FIXED
* Network subsite shows countries table does not exist error - FIXED
* Added a new pre-defined field "Distance To" - ADDED
* Enfold theme builder color section not working on GD template - FIXED
* Custom field option values always shows option uppercase first - FIXED
= 2.0.0.66 =
* GD post favourites widget issue for icon option - FIXED
* Timezone API requests exposes the API key - FIXED
* Setup wizard moved to later hook so is_block_editor() method can be used - FIXED
* Category map icon no longer required when adding a category - CHANGED
* Category map icon will be auto-generated if empty and Font Awesome icon is set - ADDED
* Default map marker updated to new icon - CHANGED
* Custom price field does not shows currency symbol for decimal data type - FIXED
* Category should be auto selected/checked for a single category - CHANGED
* Output location fieldset's with child elements will only be output if child elements have content - CHANGED
* Import post not showing error for non GD post type - FIXED
* Beaver themer layout not working with GD widgets - FIXED
* Directory map not showing child categories for empty parent category - FIXED
* If Google maps is disabled then use OpenStreetMap API to get GPS data during import - ADDED
* Genesis theme listing detail page shows incorrect meta title - FIXED
* [gd_post_meta] shortcode location parameter is not working - FIXED
* Going away from edit listing page always shows popup warning about unsaved changes - FIXED
* The7 theme compatibility for GD pages - FIXED
* Ninja forms widget now has option to output the form direct, can be used in sidebar or in tab - ADDED
* Include post images in Rank Math sitemap - ADDED
= 2.0.0.65 =
* Jarida theme compatibility for GD page sidebars - FIXED
* Business hours timepicker translation not working on first load - FIXED
* GeneratePress theme not showing correct SEO meta on detail page - FIXED
* Listimia theme shows default page title for GD archive pages - FIXED
* Widget shows logo image even it disabled via package - FIXED
* GD Single Tabs, widget now has option to output head and body separately - ADDED
* Category default image not working when category imported via csv - FIXED
* Jupiter theme GD page sidebars not working - FIXED
* AJAX listings pagination not working is email allowed to show on listings - FIXED
* Newspaper theme sidebar position not working on GD pages - FIXED
* Duplicate image slider id breaks ajax image slider - FIXED
* Helper function to check if a given listing has a custom field - ADDED
* Rank Math SEO plugin compatibility settings - ADDED
= 2.0.0.64 =
* Beaver Builder content does not work for archive item template - FIXED
* Autocomplete search result selection looses street number for some locations - FIXED
* Option added to add Geocoding API key - ADDED
* Allow to choose Font Awesome pro icons for active Pro subscription - ADDED
* IE displays bg image over listing content - FIXED
* GD Map allows to filter listings by tags - ADDED
* Change country name "Russian Federation" to "Russia" - CHANGED
* Missing required field error may results in JavaScript error - FIXED
* Link in no posts found message redirects to wrong add listing post type page - FIXED
* Listings widget list view not setting as widget checks for empty value - FIXED
* Changes for location queries for GPS position - CHANGED
* Post SMTP plugin conflicts with GD post save - FIXED
= 2.0.0.63 =
* Image import for old posts can set the wrong image url for the featured image - FIXED
* Ability to add captions to the images slider - ADDED
* Recent reviews widget does not display the correct number of reviews - FIXED
* Apostrophe in title or caption wipes out the rest of the title/caption - FIXED
* Sort by images is not working - FIXED
* Custom Sidebars plugin compatibility - ADDED
* Support added for image/webp type image upload - ADDED
* GD Pages shows blank content when page not setup with Divi page builder - FIXED
* Not able to setup GD search page with Divi page builder - FIXED
* Individual word search limit shows unexpected results - FIXED
* MightyMag theme compatibility for GD pages - ADDED
* Sticky map not working with OpenStreetMap - FIXED
* Add listing tags not showing popular tags at top of the list - FIXED
* Enfold theme shows wrong title for GeoDirectory pages - FIXED
* Avada theme compatibility for GD page sidebars - FIXED
* Unable to save empty post tags - FIXED
* Map post types slider not working in mobile devices - FIXED
* GD > Single Reviews widget added that can show the comment/reviews section on the details page - ADDED
* New GeoDir_Hints class introduced which will show setup hints to admins throughout the site - ADDED
* Some WP_POST_REVISIONS settings can cause issues with first save on post added from wp-admin - FIXED
= 2.0.0.62 =
* GD Archive pages not rendering shortcodes when Elementor is active - FIXED
* Ratings in listing view should be on its own line if placed after a gd_post_badge - CHANGED
* Location filter enabled on location page default content gd_listings - CHANGED
* Default view for archive page on install changed to Grid view 2 - CHANGED
= 2.0.0.61 =
* Polifill for CSS object-fit in browsers that don't support it - Added
* Prevent saving custom fields found in array of standard fields - ADDED
* Optional Address line 2 field added, can be enabled under address field - ADDED
* Classifieds dummy content - ADDED
* "Kingstudio" theme compatibility for gd pages sidebar - ADDED
* Frontend edit post screen now shows restricted message if not allowed to edit - ADDED
* Translation for "May" month abbreviation shows incorrect date - FIXED
* 404 rescue setting not working for translated CPT slug - FIXED
* Changed external API for IP to location to a more reliable one - CHANGED
* WP Country Database lib updated to 1.0.3 - CHANGED
* Customizr Pro theme does not locates the GD templates - FIXED
* Genesis theme pagination conflicts with GD Listings pagination on mobile devices - FIXED
* Allow to reset the custom field value of the select box - ADDED
* Elementor content not used for archive item template - FIXED
* Yoast breadcrumbs not showing category on GD category pages - FIXED
* Post Address widget sometimes not showing the neighbourhood - FIXED
* GeneratePress theme page layout compatibility - ADDED
* Removed "other emails" settings section which is no longer in use - REMOVED
* Grid view 1 added to Listing and Loop widget - ADDED
* Layout=1 in loop widget is now used for grid view 1 and layout=0 is used for list view (upgrade rectifies default content) - BREAKING CHANGE
* Font Awesome Pro now supported - ADDED
* Font Awesome Kits now supported - ADDED
* Import listings post_date should supports d/m/Y date format - CHANGED
* Post Badge widget can now open links in lightbox if class "gd-lity" is used - ADDED
* Post Badge widget price fields used will now be price formatted - CHANGED
* Category font awesome icons have extra fas class on output which can break brands - FIXED
* Category widget not respecting max_level param - FIXED
= 2.0.0.59 =
* GD Listings widget title not working with pagination - FIXED
* Some fields are not stripping slashes - FIXED
* Include post date in exported files - ADDED
* "Unicon" theme compatibility for gd pages - ADDED
* Post Address widget now supports %%post_title%% - ADDED
* Sometimes when post revision is restored comment counts are reset to zero - FIXED
* $post_temp data is set to null for non GD posts to prevent issues when both inserted in same POST request - CHANGED
* Slider visible number sometimes not returning number which can cause ajax loading to break - FIXED
* Post images gallery has empty whitespace on the right in mobile - FIXED
* Business hours default offset should not account for DST - FIXED
= 2.0.0.58 =
* Sometimes distance value not showing on search page - FIXED
* Search with zip returns wrong address with OpenStreetMap - FIXED
* Badge not working for address field - FIXED
* Display email not working in elementor preview - FIXED
* Categories widget looses location on CPT switch - FIXED
* New non single use predefined custom fields should have ability to change field key - FIXED
* Post images widget can now be used as a carousel by setting the limit_show value when used as a slider - ADDED
* Sample CSV file updated to show new image format separator :: instead of , - FIXED
* Class geodir-featured added to body class if post is featured - ADDED
* Under certain settings configurations a user without editor privileges can set post status to revision - SECURITY
= 2.0.0.57 =
* Image extension with uppercase not showing in backend - FIXED
* Recently viewed widget can break single page slider in some cases - FIXED
* Recently viewed widget setting added to load slider script if archive item has slider - ADDED
= 2.0.0.56 =
* Genesis theme not using h1 tags for archive page titles - FIXED
* GD SEO titles should still be used even if Yoast is installed - CHANGED
* Update jQuery FlexSlider to v2.0.2 - CHANGED
* BCC option missing for emails of the listing submitted for pending review - FIXED
* Frontend delete listing should refresh page on success - CHANGED
* Link is broken in phone badge - FIXED
* Business hours default offset should not use DST (Daylight Savings Time) in add listing - FIXED
* Category FA icon and color not cleared on save - FIXED
* Post Address widget alignment argument changed to mean float positioning - CHANGED
* Post meta and post address now have alignment and text-alignment arguments - ADDED
* Post images widget thumbnail size now forces that size instead of responsive - CHANGED
* Removed some leftover JS for removed chosen select - FIXED
* Map sticky option added now using font awesome icon and local-storage for settings - ADDED
* Google static map option added for single post map - ADDED
* Some text custom field types not applying validation pattern - FIXED
* Post images now uses image cover by default and gives option to change to x,y or none - CHANGED/ADDED
* Post images limit_show param added, this can be used to hide some images in gallery output but still load them via lightbox - ADDED
* Permalink issue with %post_id% rewrite tag - FIXED
* CPT + neighborhood urls shows 404 page not found - FIXED
* "Betheme" theme compatibility for gd pages - ADDED
* On some themes link of page 1 of GD Listing pagination not working - FIXED
* CPT tabs shortcode section can now accept post variables like [my_custom_shortcode id="%%facebook_id%%" ] - ADDED
* Post badge widget can now use any custom field in the badge text - ADDED
* CSS changes to try and better embed videos responsively - CHANGED
* Add listing widget now has param to set the container it will replace after submit - ADDED
* Divi builder shortcodes not rendered via some ajax calls - FIXED
* Elementor theme template not working correctly on GD search archive - FIXED
* HTML field script contend can be broken due to wpautop running after do_shortcode - FIXED
* GD Listings allows to filter listings by tags, favorited by user - ADDED
* Page default content can now be filtered so to be changed by theme or plugins - ADDED
* Improve UX for title and caption on images - ADDED
* Comma in Title (or description) of image caption wipes content after comma - FIXED
* WooCommerce PayPal Checkout Gateway conflict breaks with map marker popup - FIXED
* Fullstop in title or caption causes image preview to disappear - FIXED
* Non relative urls for icon breaks markers on map - FIXED
* Changes for Yoast breadcrumbs to include categories in details page - CHANGED
* Post images widget can now output different types of images like icon and comment_images - CHANGED
* Issue in rescue old tags url to prevent 404 error - FIXED
* Search page is broken when Flatsome theme active - FIXED
= 2.0.0.55 =
* "Elvyre - Retina Ready Wordpress Theme" layout compatibility for detail & archive pages - ADDED
* Geodir_Session class called in other addons can cause issues on frontend before upgrade - FIXED
* Transparent image multiratings not displaying right on less than full score - FIXED
* Post badge now has item specific classes - ADDED
* added some badge classes for extra features - ADDED
* OpenStreetMap map icon position not relative to zoom level - FIXED
* Conversion script can set categories to select instead of multiselect - FIXED
= 2.0.0.54 =
* Ninja Form looses post id and shows incorrect post title - FIXED
* Added some more deprecated functions to prevent undefined function errors - ADDED
* Update warning text added to readme change log section - ADDED
* Changed .hidden class to .gd-hidden to prevent conflicts - CHANGED
= 2.0.0.53 =
* Post author meta info missing closing wrapper div - FIXED
* Meta excerpt not being trimmed, now trimmed to default excerpt length of 55 words - FIXED
= 2.0.0.52 =
* Added some deprecated functions to prevent redeclare function error after update - FIXED
* Bumped PHP min version to 5.6 (new WP standard) - INFO
= v2.0.0.51 =
* First release of v2 on wp.org - INFO
v2.0.0.50
"Clear version numbers" tool should clear countries db version - ADDED
GD Listings block advanced settings breaks due to paging settings - FIXED
GD Listings view all link not working if multiple categories set - FIXED
Ninja Forms send message changed to show all fields (current forms should change message to include {all_fields_table} ) - CHANGED
Post meta address not using the custom field settings to hide address parts - FIXED
Post badge not replacing %%post_url%% correctly - FIXED
Required message not editable until custom field saved - FIXED
Validation pattern extended to phone,email and url type fields - ADDED
Avada theme not using GD titles - FIXED
Recently viewed widget not checking for deleted post IDs - FIXED
Child fields disappears after saving fieldset - FIXED
v2.0.0.49
Front end author actions - After delete, page is 404 - FIXED
No map icon validation on edit cat - FIXED
Rating input not working from admin area edit comment screen - FIXED
Change for SEOPress caused Beaver builder issues on search page - FIXED
Post meta widget shows excluded fields from package - FIXED
Beaver Builder :: Added warning message to template pages to say best to use Beaver Themer - ADDED
If reviews disabled comment counts can be wrong for standard comments - FIXED
If reviews are disabled the standard comments form can sometimes show twice - FIXED
Themify ultra theme has JS conflict on admin add listing page - FIXED
Details page now adds the default id as a body class - ADDED
Pending posts count numbers will now show next to the CPT admin menu item - ADDED
Email settings subject and body placeholder text - ADDED
No listings found message should contain add listing link - ADDED
Email settings subject and body placeholder text now editable - ADDED