-
Notifications
You must be signed in to change notification settings - Fork 96
/
changelog.txt
4492 lines (4082 loc) · 256 KB
/
changelog.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
== Changelog ==
= 1.1.1 (12 November 2024) =
* New : Manual post selection in infinite scroll #5651
* Fixed: Version 1.0.99.1 causing Tag issue. #5650
* Fixed: Errors in debug.log, PHP Deprecated: trim(): Passing null to parameter #5652
* Fixed: GA-4 Analytic not working on infinite scroll post #5656
* Fixed: The Last Modified date appears broken in the AMP version #5659
* Fixed: Feature images are not loading in homepage due to conflict with JNews theme lazyload #5655
* Fixed: Afterpay Gateway for WooCommerce plugin is causing issue in Amp Validator #5643
* Fixed: FV Gravatar Cache plugin conflicts with AMP. #5611
* Fixed: Php error on user end. #5642
* Fixed: The author image added by the "Simple User Avatar plugin" is not showing in the AMP. #5606
* Fixed: Cron reschedule event error for hook #5595
* Fixed: PHP Deprecated: error with AMP #5621
* Test: Test with WordPress version 6.7 #5657
* Improvement : Few improvements required #5630
= 1.0.99.2 (23 October 2024) =
* Fixed: Cross-Site Request Forgery discovered by David Gallagher ( Wordfence )
= 1.0.99.1 (24 September 2024) =
* Fixed: The tag <? is disallowed error in 1.0.99 WITH MENU #5646
= 1.0.99 (23 September 2024) =
* Fixed: Conflict issue with Infinite Scroll option. #5638
* Fixed: Some language characters breaking in amp footer #5627 , #5639 , #5620
* Fixed: Code Improvement #5630
= 1.0.98 (9th August 2024) =
* Fixed: PHP errors and warnings #5617,#5624,#5619,#5628,#5629,#5626
* Fixed: Disqus comments are not showing on the AMP. #5353
= 1.0.97 (22nd July 2024) =
* Fixed: Stored Cross-Site Scripting via SVG File Upload (Reported by Wordfence)
* Fixed: Contributor+ Broken Access Control discovered by Rafie Muhammad (Patchstack)
* Fixed: PHP Deprecated: error with AMP #5621
* Fixed: Disqus comments are not showing on the AMP. #5353
* Fixed: Warning in query monitor, "Array to String Conversion" #5610
* Tested: WordPress version 6.6 #5618
= 1.0.96.1 (1st July 2024) =
* Fixed: Update Twitter Icon as X in author box #5609
* Fixed: AMP footer Menu showing as text for some users
= 1.0.96 (28th June 2024) =
* Fixed: Featured image caption is not working #5574
* Fixed: PHP deprecated error (PHP 8.2) #5587
* Fixed: PHP warning message displayed on the user's end. #5594
* Fixed: Publisher desk "Dismiss" button is not working. #5591
* Fixed: PHP error on the user end. #5605
* Fixed: Undefined property: stdClass::$inContentPlacementMethod #5607
* Fixed: While using the News12Paper theme and tagDiv Composer plugin, there is an issue with the AMP menu (user-end issue). #5608
* Fixed: Fixed: Change Twitter as X #5609
* Fixed: Amazon auto links are not working on AMP #5583
= 1.0.95 (7th May 2024) =
* Fixed: rtrim(): Argument #1 ($string) must be of type string, WP_Error given #5588
* Fixed: Issue persist due to recent update with poll maker plugin #5585
* Fixed: PHP Warning: Attempt to read property "ID" on null #5589
* Test: Test with new version of wordpress i.e. 6.5v #5581
* Fixed: Validation issues in images when using Pencil builder #5592
= 1.0.94 (3rd April 2024) =
* New: Added Shortcode so that user can show or hide some content in AMP. #5474
* Improvements: Code improvement part 2 #5567
* Fixed: Warning appears related to author-box #5577
* Fixed: The excerpt is not showing inside the em tag in AMP, and the font is not working. #5487
* Fixed: Issue with a cookie banner (GDPR) #5561
= 1.0.93.2 (1st February 2024) =
* Fixed: Video docking not working in AMP Newspaper theme #5566
* Fixed: Video not loading on Amp if video set in Soledad theme Video Embed. #5571
* Fixed: Authenticated(Contributor+) Arbitrary Post Deletion Vulnerability (Reported by Wordfence)
= 1.0.93.1 (22nd January 2024) =
* Fixed : CSS syntax error in the 'style amp-custom tag #5564
= 1.0.93 (19th January 2024) =
* New: Compatibility with the plugin WP No Base Permalink #5541
* New: An option of "AMP Alternative Menu—Below the Header" when Theme Design is set on Three #5545
* New: An option to add the "View NON-AMP version" link in the hamburger menu #5466
* New: An option where, users can add the single-post design to pages #5482
* Fixed: Code Improvement #5550
* Fixed: Change Twitter icon everywhere #5551
* Fixed: Amp backend design conflict with Vani Theme #5552
* Fixed: Debug warning #5554
* Fixed: Slider Revolution images not showing on AMP #5555
* Fixed: Dual-feature image is visible in the Design Three theme #5556
* Fixed: CRITICAL Uncaught TypeError - 'property_exists()' Critical Issue" #5557
= 1.0.92.1 (16th December 2023) =
* Fixed: Cross-Site Scripting issue on shortcode [amp-gist] for contributer+ access (Reported by Wordfence)
= 1.0.92 (18th November 2023) =
* New: Compatibility with Publytics.net #5477
* Fixed: Add a filter to modify unused CSS #5478
* Fixed: Local Fonts option not working properly. #5506
* Fixed: Autoload is termed as yes in wp_options. #5523
* Fixed: Deprecated error in query monitor #5527
* Fixed: PHP Fatal error appears in AMP #5539
* Fixed: CSS issue with 1.0.91 Version #5540
* Fixed: Invalid Layout Issue in AMP HTML Tag for Missing 'height' Attribute. #5542
* Fixed: Getting blank screen on amp pages #5546
* Fixed: Images from Slider revolution plugin not visible in AMP #5548
= 1.0.91.1 (20th October 2023) =
* Fixed: Version 1.0.91 breaks Swift Theme #5537
= 1.0.91 (16th October 2023) =
* New: Compatibility with webpushr notification #5517
* Fixed: Jetpack Stats are not showing in the AMP. #5495
* Fixed: Double curly brackets parsed from {{}} to %7B%7B%7D%7D in src attribute in amp-iframe component #5522
* Fixed: Amp Validation Error in New update #5528
* Fixed: A warning (Warning: Undefined property: WP_Post_Type::$taxonomy) is appearing on the AMP version #5532
* Fixed: The author link and date not showing properly on the homepage #5533
* Fixed: AAWP Images not loading if WebP Express is active #5535
= 1.0.90 (26th September 2023) =
* New: An option to configure the number of posts appearing on Homepage & Category page #5503
* Fixed: PHP notice on style.php #5514
* Fixed: Star rating are broken, showing numbers instead of stars #5516
* Fixed: Validation error from recent AMP update version 1.0.88.1 #5518
* Fixed: Fatal error in setting panel #5521
= 1.0.89 (14th September 2023) =
* New: Piwik Pro Analytics #5510
* New: compatibility with EmbedPress #5486
* Fixed: Conflict WP-Bakery page builder with AMP #5417
* Fixed: Warning in error log #5504
* Fixed: Uncaught ValueError: DOMDocument::loadHTML(): Argument #1 ($source) must not be empty #5512
* Fixed: Header Font Size Offset Changing After Update 1.0.86 #5496
* Fixed: Various deprecated warning in PHP 8.2+ related to dynamic property creation #5515
* Fixed: Added post data variables in GTM advanced code #5498
= 1.0.88.1 (24nd August 2023) =
* Fixed: AMP for WP Update Causes Dashboard Notices and Warnings #5508
* Fixed: Breadcrumb icon broken of design 3 #5509
= 1.0.88 (22nd August 2023) =
* Fixed: Error in error log #5472
* Fixed: Screen gets wider on mobile when enable callrail analytics #5473
* Fixed: When we disable the Call to Action button from the AMP, the CTA is still shown #5475
* Fixed: PHP Warning: Undefined variable #5479
* Fixed: The attribute 'height' may not appear in tag 'table' #5483
* Fixed: The attribute 'label' may not appear in tag 'a' #5485
* Fixed: Header Elements chosen color not loading on front end #5491
* Fixed: Deprecated warning on the AMP #5493
* Fixed: Deprecated issue #5497
* Fixed: Fatal Error & warning in the debug log #5500
* Fixed: The PDF files are not appearing properly on the AMP version #5502
* New : Multiple Google Analytics 4 accounts support #5481
= 1.0.87 (3rd July 2023) =
* Fixed: CallNow buttons number is not replaced by callrail #5459
* Fixed: Add compatibility with Adobe Launch #5457
* Fixed: Undefined variable $q + attempt to read property “max_num_pages” in design-1 #5458
* Fixed: AMP not working with categories. #5456
* Fixed: Truepush integration not working: missing file /accelerated-mobile-pages/includes/truepush-integration/sw.js #5455
* Fixed: An error is appearing in the console and the AMP setting panel is frizzed #5442
* Fixed: Hestia Pro theme buttons are not appearing in the AMP version of the website. #5452
* Fixed: Uncaught Error: Call to a member function get() on string #5463
* Fixed: PHP Error is showing in the AMP #5464
* Fixed: ampforwp_modify_rel_canonical filter should be applied at last in function #5468
* Fixed: Playfair Display font is not showing in the heading font family. #5469
* Fixed: Title H1 tags is automatically converted to H2 tags in AMP #5470
* Fixed: GA4 activity fails when the AMP page is hosted on Google #5471
= 1.0.85 (10th May 2023) =
* Fixed: Notice : Function WP_Scripts::localize was called incorrectly. The $l10n parameter must be array #5435
* Fixed: PHP error after the recent update 1.0.84 #5436
* Fixed: Dismiss button not working #5437
* Fixed: Issue with Google Font and Global Font Weight Selector #5440
* Fixed: Some issue in extension section #5433
= 1.0.84 (28th April 2023) =
* Fixed: Conflict issue with Jetpack Tiled gallery #5424
* Fixed: An Author's page amphtml is not getting generated if the author name has "-" character. #5426
* Fixed: Incorrect hook used to add admin scripts #4457
* Fixed: when user is not an ampforwp admin, then newely created posts are not getting added in the instantarticles feed #4588
* Fixed: Fatal error with Nitropack #5427
* Fixed: Conflict issue with Imagify and WP Offload Media Lite plugin #5432
* Fixed: The Analytic option Google Tag Manager is causing an error in the console while using with AMP Pop-up #5429
* Improvement: Test with WordPress 6.2 and update Tested Up To in readme.txt #5431
= 1.0.83 (4th April 2023) =
* Fixed: The Facebook like button is not showing up properly on the AMP version. #5416
* Fixed: Conflict WP-Bakery page builder with AMP. #5417
* Fixed: Deprecated error messages in debug log in wordpress 6.2. #5418
= 1.0.82 (24th March 2023) =
* Fixed: Callrail conflicting with contact number format. #5392
* Fixed: Adobe Analytics support in AMPforWP. #5395
* Fixed: While AMP is active, errors and warnings appear on the user website. #5396
* Fixed: The attribute "action" may not appear in tag form. #5398
* Fixed: View non-amp and Leave a comment not working. #5404
* Fixed: While using the Yuki Blogger theme, when we edit the AMP customization, it shows a fatal error. #5405
* Fixed: The option Infinite Scroll is not working. #5408
* Fixed: An error is appearing on GSC "custom java Script is not allowed. #5411
* Fixed: An error is appearing on GSC due to an option of the plugin Embed Plus YouTube WordPress Plugin #5413
= 1.0.81 (27th February 2023) =
* Fixed: When selecting a post with custom structure /%postname%/amp/ issue resolved. #5379
* Fixed: TagDiv composer recent posts grid breaks if the AMP takeover is enabled issue resolved #5387
* Fixed: Validation error while using the JetPack Boost plugin issue resolved #5391
* Fixed: Warning: Cannot modify header information - headers already sent issue resolved #5394
* Fixed: Product Base Remover not working properly with ?amp issue resolved #5397
= 1.0.80 (10th February 2023) =
* Improvements: Added Support for Google Analytics 4 #4793 (Thanks to David Vallejo)
* Improvements: Added 3D Viewer plugin compatibility #5372
* Fixed: Getting error Attribute 'visible-when-invalid' missing or incorrect issue resolved #5382
* Fixed: AMP version removing the "\_blank" attribute #5383
* Fixed: Autoplay is not working #5386
* Fixed: Uncaught TypeError: count() Argument #1 must be of type Countable|array issue resolved #5388
= 1.0.79 (25th January 2023) =
* Fixed: Errors because of the FAQ blocks of schema issue resolved #5352
* New : Core Web Vitals Option #5363
= 1.0.78 (10th January 2023) =
* Fixed: Unnecessary character showing issue resolved #5334
* Fixed: Youtube close button not appearing in lightbox issue resolved #5357
* Fixed: Iframe code not loading issue resolved #5358
* Fixed: Jet Booster not connecting to site issue resolved #5362
* Fixed: After the update there is no control="" in video's code issue resolved #5366
* Fixed: Warning: Array to string conversion issue resolved #5367
* Fixed: TypeError: jQuery(...).typeWatch is not a function issue resolved #5368
* Fixed: Removed Offer Bannner #5370
* Fixed: Fatal error: Uncaught TypeError: array_merge() issue resolved #5371
* Fixed: Fatal error: Uncaught TypeError: call_user_func_array() issue resolved #5373
= 1.0.77.55.1 (2nd January 2023) =
* Fixed: Disallowed attribute or attribute value present in HTML tag error issue resolved #5360
= 1.0.77.55 (27th December 2022) =
* Fixed: Unable to add STN video Ads due to the outdated tag #5334
* Fixed: Jetpack Boost disappears after enabling the AMP Takeover #5343
* Fixed: When implementing callRail analytics, it throws error in console #5344
* Fixed: Fallback attribute is getting stripped when Change Pagination Links to /amp option is enabled #5345
* Fixed: AMP is reacting with the Scripts in the WP root folder #5346
* Fixed: PHP warning appears after activating AMP with WP Fastest Cache #5348
= 1.0.77.54.1 (22nd November 2022) =
* Fixed: PHP Fatal error: Uncaught Value Error #5174
= 1.0.77.54 (21st November 2022) =
* Fixed: Tested compatibility with wp 6.1 #5331
* Fixed: Removed deprecated warning in php 8.1.10 #5333
* Fixed: Resolved STN video Ads due to the outdated tag issue #5334
* New : BFCM internal offer #5336
= 1.0.77.53 (25th October 2022) =
* Fixed: Backslash in custom css error #5329
* Fixed: If we enable the Responsive ad option then no need to show size option. #5302
* Fixed: TikTok embed video is not working in AMP #5325
* Fixed: lightbox for Youtube feature is not working properly #5327
= 1.0.77.52 (14th October 2022) =
* Fixed: Duplicate canonical URL when AIOSEO Pro is active. #5320
* Fixed: Youtube embedded videos via elementor is not displaying in the AMP version #5322
* Fixed: Slide Anything image src not loading properly. #5315
* Fixed: PHP Warning Attempt to read property "post_type" on null #5323
* Fixed: While adding the multiple Webstories on the website page, the image is not showing of the web stories the AMP Pages. #5301
* Fixed: Author names are not shown in AMP when the Co-Authors Plus plugin is activated #5319
= 1.0.77.51 (9th September 2022) =
* Fixed: Infinite scroll doesn't work with custom post type. #5309
* Fixed: Need to make it compatible with the Co-Authors Plus plugin #5313
* Fixed: Slide Anything image src not loading properly. #5315
= 1.0.77.50 (24th August 2022) =
* Fixed: "Back to Top link" option adds amp-animation & amp-position-observer script without its usage on page #5305
* Fixed: AMPforWP is creating "/amp" as an endpoint in Addon mode. #5303
* Improvements: Strange Exclamation mark . #5304
= 1.0.77.49 (22nd August 2022) =
* Fixed: There is a compatibility issue with the latest version of the All in One SEO Plugin. #5306
= 1.0.77.48 (11th August 2022) =
* Improvements: Added Super Related Posts plugin compatibility #5298
* Improvements: Added Inline Related Post plugin compatibility #5296
* Fixed: Fatal error while activating official AMP. #5300
* Fixed: Spotify Embed not working after 1.0.77.46 version #5294
* Fixed: AMP Pagebuilder not loading with All in One SEO latest update #5299
= 1.0.77.47 (5th July 2022) =
* Fixed: AMP validation error when youtube video is embeded with query parameters #5292
* Fixed: Instagram embeds not working when added with blockquote tags #5289
= 1.0.77.46 (28th June 2022) =
* Fixed: Reduced the execution of JS in youtube embeds #5287
* Fixed: Instagram embeds not working when added with iframe #5289
* Fixed: Subchild menu items does not expand with UberMenu plugin
* Fixed: Incorrect default value in TPD #5286
* Fixed: Debug Warnings - Undefined array-key: row #5283
= 1.0.77.45 (13th June 2022) =
* Fixed: Conflict issue with WPML #5274
* Fixed: Page builder modal is getting hidden below the header of the post/page editor. #5279
* Fixed: FAQ Schema For Pages And Posts compatibility #5278
* Fixed: Debug Warnings - Trying to access array offset on value of type null #5277
* Fixed: fatal error #5280
= 1.0.77.44 (2nd June 2022) =
* Improvements: Added Marfeel analytics compatibility in AMP #5266
* Improvements: Added WP Table Builder compatibility in AMP #5270
* Improvements: Updated the email id in feedback form #5273
* Fixed: Instagram reels not working in AMP #5269
* Fixed: Preload Funtionality not working when Image is added #5260
* Fixed: AMP dashicons CSS overwrites the WP default dashicons #5265
* Fixed: Tel protocols not working in the AMP #5268
* Fixed: CTA links saving without '=' character #5267
= 1.0.77.43 (10th May 2022) =
* Updated: TPD feature updated #5257
* Fixed: Resolved the issue of Image Gallery Carousel in AMP does not change the gallery view in posts/pages #5259
= 1.0.77.42 (16th April 2022) =
* Improvements: Added REHub Comparison charts, tables Compatibility #5250
* Fixed: Debug Warnings - Undefined index: amp-license #5251
= 1.0.77.41 (12th April 2022) =
* Improvements: Added Compatibility with GenerateBlocks plugin #5248
* Improvements: Added Web Safe Fonts in Google Fonts List #5242
* Improvements: AMP Option panel improvements #5239
* Fixed: White space in footer element between the posts of infinite scroll #5238
* Fixed: Invalid JSON error in console when using Plausible analytics #5142
= 1.0.77.40 (6th April 2022) =
* Fixed: The Publisher Desk CDN URL added instead of Heroku link #5237
* Fixed: AMP Option panel improvements #5240
= 1.0.77.39 (5th April 2022) =
* Improvements: Added New Guidelines in GDPR #5225
* Improvements: Added AT internet analytics support #5233
* Improvements: UI improved of feedback form #5223
* Fixed: Header and footer showing twice in new infine scroll #5238
* Fixed: AMP option panel not working with Tour Booking Manager plugin #5236
* Fixed: Font style not loading correctly on first page load #5224
* Fixed: The hamburger icon is not clickable when Font Icon Library is selected as CSS Icons #5243
* Fixed: Duplicate li tags removed #5241
* Fixed: Warning compatibility PHP 8.0 #5245
= 1.0.77.38 (7th March 2022) =
* Improvements: Added The Publisher Desk Support #5213
* Fixed: Displaying a blank white screen when embed URLs are used #5193
1.0.77.37.1 (4TH March 2022)
* Improvements: Added new infinite scrolling experience #4791
* Fixed: The links in embed URLs are not clickable #5193
= 1.0.77.37 (2nd March 2022) =
* Improvements: Added feedback form with auto email system #5223
* Improvements: Added new infinite scrolling experience #4791
* Improvements: Added An option to add lang_ and privacyMode values in Quantcast #5206
* Improvements: Added FireWork compatibility #5210
* Fixed: AMP autocomplete tag is not working #5217
* Fixed: Autoplay functionality not working in video module #5219
* Fixed: Fonts loading twice in Global font family #5220
* Fixed: Unable to connect to Matomo analytics #5221
= 1.0.77.36 (18th February 2022) =
* Fixed: If the server-side cache is aggressive then the pagination URL with ?amp=1 is redirecting to non-AMP #5208
* Fixed: Errror getting in featured-image.php, on line 77 #5207
* Fixed: Need to keep the mobile redirection filter outside of any condition #5216
= 1.0.77.35 (21th January 2022) =
* Fixed: Embed URLs not working with Amp takeover active #5193
* Fixed: Need to change Google Fonts display to optional #5191
* Fixed: Need to make compatibility of amp analytics in infinite scroll #5194
* Fixed: Current year is not showing in design 1,2,3 #5190
* Fixed: VKontakte social media not working in social media profile links #5196
* Fixed: PHP Notice: tag_rewrite_rules is deprecated #5197
= 1.0.77.34 (11th January 2022) =
* Fixed: External stylesheet Errors using Vinkmag theme #5189
* Fixed: AMP Takeover functionality is not working on the blog posts #5188
* Fixed: Replace webvitalsdev to Microwork #5183
* Fixed: Wrong Notice for first time installation #5184
= 1.0.77.33 (15th December 2021) =
* Fixed: Code improvements in AMP options panel #5179
* Fixed: Stylesheet errors when using Qoxag theme #5177
= 1.0.77.32 (11th December 2021) =
* Fixed: Code improvements in AMP pagebuilder #5179
= 1.0.77.31 (7th December 2021) =
* Fixed: Uncaught ValueError - DOMDocument::loadHTML() Error #5174
* Fixed: PHP Notice: Undefined index: rgba #5175
* Fixed: Optional added for font display in google fonts #5176
= 1.0.77.30 (25th November 2021) =
* Improvements: Added Filter to modify title in AMP #5170
* Fixed: Whitelisted amp-render tag #5171
* Fixed: Featured image not appearing in loop with Offload Media Lite #5153
* Fixed: Infinite scroll showing posts from different categories also when same category is selected #5168
* Fixed: Webp images not appearing in preload with WEBP express plugin #5165
* Fixed: pagination 404 issue with infinite scroll #5167
= 1.0.77.29 (28TH October 2021) =
Improvements: Search results opens directly in Google search in AMP #5161
Fixed: Undefined variable - pathExploded debug notice #5160
Fixed: ID has been getting removed from the amp-img tag #5163
= 1.0.77.28 (28TH October 2021) =
Improvements: License code improved #5151
Fixed: Default Gravatar not appearing with FV Gravatar Cache #5149
Fixed: Featured image not appearing with Offload Media Lite #5153
Fixed: Function name updated in the seo framework #5155
Fixed: Lifetime license key is showing as expired in admin panel #5156
Fixed: Video is not loading when created by slider revolution with divi #5159
= 1.0.77.27 (21TH October 2021) =
Improvements: Added AdPushup Support in AMP #5144
= 1.0.77.26 (20TH October 2021) =
Improvements: Added FV Gravatar Cache Compatibility in AMP #5149
Fixed: Images not loading when destination structure is document root in WebP Express #5150
= 1.0.77.25 (1st October 2021) =
* Improvements: Added Plausible analytics compatible in AMP #5142
* Fixed: The amp-minute-media-player tag is getting stripped from the content #5146
* Fixed: Author profile images not loading from Ultimate Member plugin #5141
* Fixed: AMP Page builder content not rendering with Muffin builder #5147
* Fixed: Debug log Errors #5145
= 1.0.77.24 (23rd September 2021) =
* Improvements: Added Filter to disable AMP for all categories except one #5139
* Improvements: Added Ninja Form in the description of contact form module #5138
* Fixed: Basic/Advance popup shows everytime when visiting option panel #5143
* Fixed: Renewal link redirecting to 404 from options panel #5140
* Fixed: Incorrect URL while using Matomo analytics #5136
* Fixed: Validation error in the alt tag with Transposh plugin #5135
* Fixed: Some design issues on one specific users #5134
* Fixed: Debug Warnings - Use of undefined constant AUTH_KEY and SECURE_AUTH_KEY #5035
= 1.0.77.23 (16th September 2021) =
* Improvements: Added Top Mail Ru analytics support in amp #5130
* Improvements: Added an option to move sponsorship label above the ad
* Improvements: Updated the facebook instant articles to 50 when limit is not set #5131
= 1.0.77.22 (6th September 2021) =
* Fixed: Validation error with rankmath's "open external links in new tab" option #5129
= 1.0.77.21 (6th September 2021) =
* Fixed: Images not displaying in AMP with Lazy loading of Zeen theme #5126
* Fixed: Missing rel noopener attribute in links #5125
* Fixed: Incorrect canonical for Homepage if WordPress installation is another folder #5122
* Fixed: No data hero attribute on featured image of default image #5121
* Fixed: Debug log errors #5124
= 1.0.77.20 (24th August 2021) =
* Fixed: Validation errors when Jetpack boost plugin is active #5120
* Fixed: Display Warning Icon more clearly if setup is not completed #5119
* Fixed: Image loading issues while using Webp express #5118
= 1.0.77.19 (13th August 2021) =
* Fixed: Disable AMP on desktop not working with ?amp #5113
* Fixed: Can't use function return value error when activating plugin #5115
* Fixed: Button icon showing white When installing schema internally #5111
= 1.0.77.18 (5th August 2021) =
* Improvements: Added License Key information in AMP panel #5110
= 1.0.77.17 (3rd August 2021) =
* Improvements: Added dotmetrics analytics support in amp #5107
* Improvements: Added support to preserve query string with ?amp #5103
= 1.0.77.16 (29th July 2021) =
* Improvements: Added Filter to remove last-modified header in amp #5101
* Fixed: Webp images are not converting with Webp Express plugin #5108
* Fixed: Validation error - The tag 'lite-youtube' is disallowed #5102
* Fixed: Yoast custom breadcrumbs title not working after update #5100
= 1.0.77.15 (27th July 2021) =
* Improvements: Added Yoast custom breadcrumbs title support #5100
* Fixed: Author name only showing for the first post on homepage #5099
* Fixed: Youtube videos does not appear on the AMP page with the Video Yoast plugin
* Fixed: The parent tag of tag ‘picture’ must be noscript validation error #5097
= 1.0.77.14 (20th July 2021) =
* Fixed: AMP page not showing with query string from 1.0.66 version #5096
* Fixed: Related posts title and excerpt not appearing properly #5095
* Fixed: Debug warnigs with WP Foro plugin #5094
= 1.0.77.13 (16th July 2021) =
* Fixed: FooGallery plugin not working with AMP #5090
* Fixed: Console error when Back to Top link option is enabled #5091
* Fixed: Exclude Categories is not working #5088
* Fixed: Long word post title not breaking in mobile view #5092
= 1.0.77.12 (12th July 2021) =
* Fixed: Exclude categories loop not working #5088
* Fixed: Endpoint '?amp' not working with plain permalink #5087
= 1.0.77.11 (6th July 2021) =
* Improvements: Improved readme.txt for newer features #5080
* Fixed: SVG images are loading with a bigger size in the AMP version #5084
* Fixed: Removed the percentage symbol beside AMP icon in dashboard #5082
* Fixed: Gallery thumbnail image improved #5003
= 1.0.77.10 (5th July 2021) =
* Improvements: Unused CSS and Scripts are removed in AMP Optimizer (SSR) #5070
* Improvements: Added data-hero attribute in AMP logo #5083
* Fixed: Webp images not appearing with Litespeed cache #5081
= 1.0.77.9 (29th June 2021) =
* Added: AMP widget for adding amp code #5064
* Added: Filter to modify the WP Rocket CDN URL #5076
* Fixed: Meta description of Rank Math SEO plugin not showing on amp #5071
* Fixed: Slide Anything Plugin slider content is not showing #5073
* Fixed: When Convert AMP to WP theme Option is enabled, it breaks the Design #5074
* Fixed: Remove preload if Featured Image option is off in AMP options panel #5077
* Fixed: Icons are not loading when visiting first time or after clearing cache #5060
= 1.0.77.8 (23rd June 2021) =
* Added: Webp images support with LiteSpeed Cache plugin #5051
* Added: Primary category compatibility of all SEO plugins #5049
* Added: Notice if license key isn't added in AMP pro extension manager #5068
* Fixed: Instagram embeds are not loading on the Facebook instance Article #5066
* Fixed: WP rocket cache not working with ?amp query string #5063
* Fixed: Debug error appearing in the non-amp #5059
* Fixed: Code improvements for options panel #5057
* Fixed: Disqus comments not showing on mobile when adding ads #5055
* Fixed: Proper preload added if WebP Express is active #4357
* Fixed: The slashes (\) are no longer appear in the custom CSS #5035
= 1.0.77.7 (21st June 2021) =
* Added: AMP Optimizer (SSR) Support #5034
= 1.0.77.6 (12th June 2021) =
* Fixed: Custom JavaScript is not allowed error when analytics added by All in one SEO #5062
= 1.0.77.5 (10th June 2021) =
* Fixed: Some issues found while refresh the individual extension from the Extension section #5056
* Fixed: Referenced AMP URL is self-canonical AMP when AMP takeover is enabled #5053
* Fixed: Remove AMP blocks from options panel for CWV #5052
* Fixed: Incorrect link in the Breadcrumb #5050
* Fixed: Blank taxonomy in option panel #5037
* Fixed: Featured image not working for specific usecase in amp #5058
= 1.0.77.4 (1st June 2021) =
* Improvements: Added dynamic copyright code so that year changes automatically #5019
* Improvements: Added Smart Sticky Header Extension #5001
* Fixed: View Non-amp version link redirecting to 404 using custom permalink #5039
* Fixed: Headline error in schema when adding more than 110 characters in title #5033
* Fixed: Aq_resize.process() error in error logs #5041
* Fixed: Google Fonts are not getting saved while using Safari #4978
* Fixed: The tag 'animatetransform' is disallowed validation error #5043
* Fixed: Debug Warning Function get_magic_quotes_gpc() is deprecated #5035
* Fixed: Debug Warning Trying to get property 'ID' of non-object #5046
= 1.0.77.3 (27th May 2021) =
* Improvements: Added Compatibility with WebP Express plugin #4357
* Improvements: Added an option to allow users to upload and use local fonts on AMP #4264
* Improvements: Added Muffin builder Pagebuilder Support in AMP Pagebuilder Extension #5015
* Fixed: Fatal error when both Sassy Social Share and Optimize CSS are enabled #5032
* Fixed: Issues with Megashop theme #5010
* Fixed: Images not sanitized when added using Muffin Pagebuilder #5013
* Fixed: Hide featured images on a single post if this is older than certain date #5018
* Fixed: Getting AMP validation Error in Add Widget After Content plugin #5027
* Fixed: Query Monitor not working on AMP pages #5025
* Fixed: Full-size image is always preloaded for the featured image in Swift theme #5038
= 1.0.77.2 (20th May 2021) =
* Fixed: Some issues with style on normal version after update #3844
= 1.0.77.1 (19th May 2021) =
* Improvements: Added a filter from which user can control Mobile redirection #4488
* Improvements: Implemented the Mobile redirection functionality using Javascript method #3844
* Improvements: Added preload to get featured image on AMP #5020
* Fixed: Debug Warning in templates/features.php #5014
* Fixed: Validation error in image lightbox for gallery #5021
* Fixed: Fatal error on AMP pages after updating WP User Avatar plugin #5029
= 1.0.77 (17th May 2021) =
* Fixed: Related posts doesn't show more than 3-4 #4300
= 1.0.76.17 (7th May 2021) =
* Improvements: Added Beaver builder Pagebuilder Support in AMP Pagebuilder Extension #5009
* Fixed: Title on Static Front Page is not displaying #5007
* Fixed: The attribute 'height' in tag 'amp-img' is set to the invalid value. #5005
* Fixed: ?amp doesn’t removing from view non-amp text #5006
* Fixed: Errors in Schema Pro FAQ #4956
* Fixed: PHP Warning error when enable Breadcrumbs option #5008
= 1.0.76.16 (4th May 2021) =
* Fixed: Incorrent height in anchor.fm audio embed from the Pennews Theme #4576
* Fixed: Slide Anything Plugin text slider not working in AMP #4999
* Fixed: Backend button translation #4717
* Fixed: Alignment issue with Gutenberg image block #4997
* Fixed: Undefined variable $q / Attempt to read property max_num_pages on null #5004
= 1.0.76.15 (28th April 2021) =
* Improvements: Added an option to add one signal notification on the desktop #4377
* Improvements: Added an option to set Target for CTA button in swift theme #4995
* Improvements: Added an option to install PWA from options panel #4529
* Improvements: Added HappyForms Compatibility Extension #5001
* Fixed: Width in percentage not working for the audio from the Pennews Theme #4576
* Fixed: Need to allow two attributes in input tag #4998
= 1.0.76.14 (23rd April 2021) =
* Improvements: Added an option to add Schema Pro FAQ in AMP #4956
* Improvements: Added support for the audio from the Pennews Theme #4576
* Improvements: Added Getty Images embed Compatibility #4188
* Improvements: Added an option to move the search bar top and bottom. #4748
* Improvements: Added an option for autoplay in slider module of AMP pagebuilder #3859
* Improvements: Added an option to remove Site navigation element schema #4583
* Improvements: Added related posts after the last post for infinity scroll posts in AMP layout #4652
* Fixed: Call to undefined method MCI_Footnotes_Convert error #4993
* Fixed: Search bar close icon is hidden behind the admin navigation bar #4991
* Fixed: AMP menu automatically scrolls down to bottom in Design three #4967
* Fixed: Single post content not showing when using AMP on subdomain #4996
= 1.0.76.13 (19th April 2021) =
* Improvements: Added an option to preserve original permalinks in mobile redirection #4207
* Improvements: Added an option to add moderation tool for the Facebook comments #4485
* Improvements: Added an option to make buttons side by side in the mobile with AMP pagebuilder #4472
* Improvements: Added an option to add UTM souce parameters in URLs to both related & incontent related posts #4237
* Improvements: Added Quantcast CMP (consent management platform) support in AMP 4951
* Fixed: Alt tag not appearing in sticky social sharing icons #4984
* Fixed: Debug Warning in edit tag page when using PHP8 #4990
= 1.0.76.12 (14th April 2021) =
* Fixed: Fatal error occuring with the recent update Version 1.0.76.11 #4986
= 1.0.76.11 (14th April 2021) =
* Improvements: Added an option to select same categories in infinite scroll #4017
* Improvements: Added an option to select same tags in infinite scroll #4939
* Improvements: Added the filter to change breadcrumbs name #4979
* Fixed: Muffin pagebuilder not working in AMP #4983
* Fixed: PHP 8 debug errors #4981
* Fixed: AMP menu automatically scrolls down to bottom in Design three #4967
* Fixed: Deprecated Filters Detected Warning in All in one SEO plugin #4980
= 1.0.76.10 (9th April 2021) =
* Improvements: Added the Compatibility with the Schema Pro FAQ #4956
* Improvements: Added the feature to track each author contribution to the website pageview #4952
* Improvements: Added an option to show published date and time below the title #4976
* Improvements: Added an option to automatic redirect AMP to non-amp when access through desktop #4975
* Improvements: Added the Compatibility for Add Widget After Content plugin #4949
* Improvements: Added Forminator for AMP Extension #4965
* Fixed: Search Close Button is hidden for the Google Cached AMP Pages #4977
* Fixed: Image is not showing when the post is shared on social network #4971
= 1.0.76.9 (2nd April 2021) =
* Fixed: Facebook videos embedding not working #4973
* Fixed: The incorrect excerpt for the custom front page if user is using the Divi #4972
* Fixed: When Yoast SEO Multilingual is activated canonical getting addition http #4970
* Fixed: Close button not visible in the menu for the Google Cached AMP Pages #4969
* Fixed: Sassy social share icons are not displaying on AMP #4945
* Fixed: The AMP For WP option panel not saving due to redux plugin #4963
* Fixed: Docking functionality is not working for the amp-video type in mobile view #4961
* Fixed: Cannot change the title for in-content related post #4959
* Fixed: Upgrade for Free' button in structured data settings is not working #4960
* Fixed: Beginner and advance mode popup not closing #4974
= 1.0.76.8 (22nd March 2021) =
* Fixed: Srcset attribute not appearing on images with AMP page builder #4954
* Fixed: Option added to disable structured data in AMP #4953
* Fixed: Debug Warning with PHP 8.02 and WordPress 5.6.2 #4946
* Fixed: Background Video loop not working with AMP page builder #4948
* Fixed: Mobile redirection not working for the front page when pages are disabled #4942
* Fixed: Captions are not working on Slideshow Module by Jetpack Plugin #4950
= 1.0.76.7 (15th March 2021) =
* Fixed: WP_Scripts Debug Warnings when WordPress updated to v5.7 #4958
= 1.0.76.6 (12th March 2021) =
* Improvements: Added an option to show the author details after the title on mobile #4858
* Fixed: Images not appearing with WP stateless Google cloud storage plugin #4575
* Fixed: Category module doesnot have "/" at the end of the URL #4932
* Fixed: Proper commenting added for hooks #3368
* Fixed: Sticky social share bar icon colliding with polylang plugin #4935
* Fixed: AMP Page Builder is breaking with contact form module #4937
* Fixed: Truepush notification not working in AMP #4936
= 1.0.76.5 (20th February 2021) =
* Improvements: Added UX Builder compatibility #4933
* Fixed: Second paginated post not working #4892
* Fixed: Jetpack hosted videos not working on AMP #4931
* Fixed: AMP Pagebuilder module getting narrowed with All in One SEO plugin #4930
= 1.0.76.4 (19th February 2021) =
* Fixed: AMP front page not working after update #4892
= 1.0.76.3 (19th February 2021) =
* Improvement: Added the Smart Mag Theme review schema #4898
* Improvement: Added disable right click for copy protection #4877
* Improvement: Added an option to hide the title on pages #4929
* Fixed: AMP Browser caching policy #4876
* Fixed: p tags getting stripped with Change Pagination Links to /amp option #4892
* Fixed: Missing URL for attribute error for SVG images #4911
* Fixed: Debug warnings #4924
= 1.0.76.2 (17th February 2021) =
* Fixed: Removed The SEO Checklist Banner #4912
= 1.0.76.1 (16th February 2021) =
* Fixed: Fatal conflict with Yoast Premium #4926
* Fixed: Wrong Yoast breadcrumb links for the posts having multiple categories #4923
* Fixed: Fatal error on bbpress profile page #4922
* Fixed: Comments not showing on AMP front page #4921
= 1.0.76 (9th February 2021) =
* Improvement: The SEO Checklist Banner #4912
* Fixed: Telegram icon not visible in menu #4919
* Fixed: Validation error in amp-img with transposh plugin #4918
* Fixed: Fatal error when FIFU plugin is activate #4920
* Fixed: AMP admin option panel is showing blank on user end #4914
* Fixed: Tag base remove in AMP not working after 1.0.60 #4908
* Fixed: data-playlist gets removed automatically in amp-brid-player #4906
* Fixed: View Non-Amp Version link does not link to proper canonical url #4901
* Fixed: Srcset not loading in category module of AMP page builder #4900
* Fixed: Debug warnings #4917
= 1.0.75 (23rd January 2021) =
* Fixed: Imgur embed code not working in AMP #4899
* Fixed: Srcset not loading in category module of AMP page builder #4900
* Fixed: Advertising section displaying blank when AdsforWP plugin is active #4889
* Fixed: AMP Page Builder not working on the pages and posts except the homepage #4890
* Fixed: Swift 2nd header menu aligned towards right with polylang plugin #4893
* Fixed: Post Pagination not working after 1.0.69 version #4902
* Fixed: Debug warnings #4896
= 1.0.74 (30th December 2020) =
* Improvement: Added Oxygen Pagebuilder Compatibility for AMP Pagebuilder Extension #4868
* Improvement: Added disable right click option on AMP for copy protection #4877
* Fixed: Validation Errors when WP Daddy Builder Pro is active #4879
* Fixed: The yoast meta title is not reflecting in AMP with Smartmag theme #4885
= 1.0.73 (23rd December 2020) =
* Fixed: Javascript issues after update to WordPress 5.6 #4867
* Fixed: '-' symbol is not appearing on post title #4866
* Fixed: GDPR strings are not getting translated in WPML #4874
* Fixed: AMP Browser caching policy updated #4876
* Fixed: Validation Errors when WP Daddy Builder Pro is active #4879
* Fixed: Vuukle comments box appearing twice in AMP #4878
* Fixed: Validation error when 'area' tag is added in post content #4882
* Fixed: Validation error "Custom JS is not allowed" with ALL in one SEO pro #4883
= 1.0.72 (17th December 2020) =
* Improvement: Added i2Pros and cons plugin compatibility #4837
* Improvement: Added WP-PageNavi plugin compatibility #4831
* Improvement: Added Categories Images plugin compatibility #3973
* Improvement: Added webp images on the homepage and Archives with Imagify plugin #4725
* Improvement: Added Recipe Compatibility for AMP Extension #4868
* Fixed: Amp option panel breaks when AECC Global Theme is activated. #4863
* Fixed: Facebook page embed fails #4871
* Fixed: Referenced AMP URL is self-canonical AMP while using All in One Seo #4873
= 1.0.71.2 (12th December 2020) =
* Fixed: Incorrect AMPHTML on homepage with ?amp #4865
= 1.0.71.1 (10th December 2020) =
* Fixed: Validation error in author bio alt attribute #4864
= 1.0.71 (10th December 2020) =
* Fixed: AMP Page builder accordion not working in 1.0.70 #4862
* Fixed: Category name in the dropdown not redirecting and AMP Sidebar alignment #4861
* Fixed: AMP Sidebar Menu Remains Open After Browser Back in Firefox and Safari #4840
* Fixed: amp-auto-ads was found on this page, but is unused error #4851
* Fixed: Amp option panel breaks in Product Filter For WooCommerce Product Plugin #4853
* Fixed: ID attribute added inside the analytics section #4852
* Fixed: Updated Facebook Messanger Icon #4859
* Fixed: Heading elements added in blurb module of AMP page builder #4856
* Fixed: Special characters are showing for post titles after sharing tweets #4850
= 1.0.70 (7th December 2020) =
* Improvement: Added filter to modify author bio description #4849
* Improvement: Added LGDP (Brazil's GDPR) #4854
* Fixed: Ads are displaying even GDPR popup is rejected #4843
* Fixed: Role Based Access not working for SEO manager role in Yoast #4830
* Fixed: Homepage url not redirecting to non-amp url with AMP takeover and ?amp #4826
* Fixed: The amphtml not generating with the Hide By Default option in AMP Takeover #4824
* Fixed: Undefined variable: allscripts #4846
* Fixed: Breadcrumb bug in amp homepage #4827
* Fixed: When the minify option is disabled then the WhatsApp share link has a space #4848
* Fixed: Validation error when using web stories plugin #4847
* Fixed: The background color of feature module of layout2 is not getting applied #4835
* Fixed: Canonical and meta description errors in All in one SEO PRO #4829
* Fixed: Avatar image doesn't have alt attribute #4836
* Fixed: AMP posts are redirecting to the 404 page when post id is added in permalink #4842
* Fixed: The amphtml not generating on the custom taxonomy and the custom post types #4841
= 1.0.69.2 (27th November 2020) =
* Fixed: Improvements in offer banner #4833
= 1.0.69.1 (25th November 2020) =
* Fixed: amp-story-player was found on this page, but is unused. #4839
= 1.0.69 (25th November 2020) =
* Fixed: Wrong tooltip link in the infinite scroll #4823
* Fixed: Images are not showing in the AMP due to SG Optimizer lazy load #4815
* Fixed: Embeds not working in AMP Takeover mode #4819
* Fixed: AMPHTML appearing in archive page of Google web stories #4820
* Fixed: AMP option panel page is blank with ECPay Payment for WooCommerce plugin #4816
* Fixed: 404 errors on pagination urls #4373
* Fixed: Blank lines not appearing between paragraphs #4818
* Fixed: amp-story-player preload is being added when not using #4828
= 1.0.68.1 (10th November 2020) =
* Fixed: Missing amphtml on product pages #4822
* Fixed: Debug warnings #4821
= 1.0.68 (9th November 2020) =
* Fixed: Validation error occurs when input type image is added #4785
* Fixed: Featured images are not showing when "Enable lazy load images" option is enabled in the "DEUS" Theme #4710
* Fixed: AMP Push Notification - Dropdown issue #4812
* Fixed: Italic style caption of gallery #4806
* Fixed: The canonical links are not generating for the coupon store when YOAST Plugin is active with AMPFORWP #4811
* Fixed: Content not displayed in AMP post/pages with plain permalink #4814
* Fixed: Tables created with 2 columns displaying 1 extra column on mobile view #4765
* Fixed: Content appearing in excerpt on single post #4798
* Fixed: Code improvment for amp pagebuilder's category-module #4660
= 1.0.67 (4th November 2020) =
* Improvement: Optimize Pagespeed score by implimenting AMP video lightbox #4531
* Improvement: Added Paid Memberships PRO for AMP Extension #4737
* Improvement: Added help section for the users in Options panel #4683
* Improvement: Added code improvement in Tag base remover and category base remover #4664
* Improvement: Added UberMenu 3 Compatiblity #4732
* Improvement: Added filter to overwrite the scripts #4642
* Fixed: Style amp-custom unterminated comment Error on AMP #4792
* Fixed: Proper styling of Header right side icons in Design 2 #3935
* Fixed: Revolution Slider not working in AMP #4669
* Fixed: Additional characters at the end of footer text in Design Two #4805
* Fixed: Related thumbnail image title is getting break and leading to the validation error #4804
= 1.0.66.3 (29th October 2020) =
* Fixed: Content not visible in AMP Takeover #4744
= 1.0.66.2 (28th October 2020) =
* Fixed: Content not visible after 1.0.66 update #4744
= 1.0.66.1 (26th October 2020) =
* Fixed: Validation error due to amp-web-push AMP component script #4796
* Fixed: Validation error due to amp-fx-flying-carpet AMP component script #4794
= 1.0.66 (24th October 2020) =
* Improvement: Added filter to modify GDPR popup output #4778
* Improvement: Added Polylang string transaltion support #4784
* Improvement: Added IO Technologies company analytics tracking code. #4753
* Improvement: Added Ultimate Membership Pro Compatibility for AMP Extension #4790
* Improvement: Code improvements #4744
* Fixed: Validation error when the "OMGF | Host Google Fonts Locally" plugin is active #4775
* Fixed: Margin top added in the twitter embed through the Gutenberg editor #4750
* Fixed: Truepush push notification not working in AMP #4644
* Fixed: Wrong amphtml on category and tags when ?amp is selected #4780
* Fixed: Missing the amp-bind script tag #4776
* Fixed: Two H1 tags appears in AMP #4786
* Fixed: Debug warnings #4767
* Fixed: Fallback images removed when Convert AMP to WP theme is enabled #4773
= 1.0.65.2 (17th October 2020) =
* Fixed: Menu not appearing in AMP #4657
* Fixed: Wrong amphtml on homepage when ?amp is selected #4780
= 1.0.65.1 (16th October 2020) =
* Fixed: Jquery issue fixed due to Easy select option for category module #4672
= 1.0.65 (15th October 2020) =
* Added: Integrated Truepush in push notification section #4644
* Added: Easy select option for category module #4672
* Added: Option to change the image size for the related posts thumbnail #4534
* Added: Option to change the image size of the first image in Swift theme #4476
* Added: AMP compatibility with Web stories by Google #4667
* Fixed: Validation error in the in-content related post #4729
* Fixed: Image elements do not have alt attributes #4757
* Fixed: When genesis theme is activated getting SEO error notice #4758
* Fixed: Removed third party plugins notices on the AMP option panel #4730
* Fixed: Instant articles not working when Site directory or Installation directory is different #4690
* Fixed: Clicking on the menu gets # at the end of the URL in design 2 #4722
* Fixed: Need to add tag for disqus comments #4692
* Fixed: Optimize menu caching code #4657
* Fixed: View non amp version is not working in mobile due to conflict with Redis Cache and WP Rocket #4614
* Fixed: Social share Buttons do not have an accessible name using Design One #4764
* Fixed: In the Contact form module, wp form options are not getting selected #4761
* Fixed: Uncaught Error: Call to undefined function ampforwp_is_home() main file #4782
= 1.0.64.1 (5th October 2020) =
* Fixed: Images are not appearing in AMP with Shortpixel plugin #4738
= 1.0.64 (5th October 2020) =
* Fixed: Comments module of AMP pagebuilder is rendering only admin comments not the others #4745
* Fixed: Shortpixel is not generating WebP in AMP #4738
* Fixed: SEO option appearing in wordpress tool bar even No SEO plugin is active #4698
* Fixed: Auto add amp in menu url functionality is not working in tags #4734
* Fixed: The internal link for the the author page is generating in the AMP if the archive page support is disabled #4746
* Fixed: Scroll to top button not visible in Design 2 #4693
* Fixed: Notice: Undefined index: Cpage #4728
* Fixed: GDPR banner is off-centered, the 'X 'is out of the screen #4724
* Fixed: Wrong AMP html when the AMP takeover and ?amp is enabled #4731
* Fixed: Addon mode forcefully redirecting to reader mode not others #4742
* Fixed: Images not appearing with Image Photo Gallery Final Tiles Grid plugin #4675
* Fixed: In Design three, when click on the menu, the page gets pushed to the right side #4736
* Fixed: FAQ icon button is a too big in amp page. #4747
* Fixed: Added meta name="referrer" content="no-referrer-when-downgrade" #4715
* Fixed: In admin tool bar, (+) icon loading small and also author image invisible #4700
* Fixed: Issue with menu background when user add internal page navigation menu-items. #4630
* Fixed: Anchor tag getting stripped when Site Kit by Google is active. #4699
* Fixed: Merriweather font option in Design 1 does not work. #4726
* Fixed: If the user is adding the HTML code in the background video module then code is showing as output #4755
* Fixed: AMP 404 template is applying on non amp page #4723
* Fixed: In-Content Related Post appearing inside the blockquote when "After 50% of content" option is selected #4743
* Fixed: If the sticky ads is active then the sticky social share link tab is hiding behind the ads #4749
= 1.0.63 (26th September 2020) =
* Improvement: Added Reddit embeds support #4406
* Improvement: Added multi select for post type in loop field #4365
* Improvement: Added custom classes in Body tag in AMP in all Designs #4594
* Improvement: Added filter for GDPR on-off #4471
* Improvement: Added admin notice when wrong seo plugin is selected #4678
* Improvement: Added TikTok embed support #4504
* Improvement: Added related post on/off in YouTube #4503
* Improvement: Added Nofollow Link button on pricing tabs in AMP Page Builder #4505
* Improvement: Improved Lighthouse Audits #4654
* Improvement: Added filter for AMP front page function #4634
* Fixed: Facebook Instant Articles (FBIA) Crawler Ingestion not working #4463
* Fixed: Incontent related post not aligned if the post does not have featured image #4691
* Fixed: Incontent path passed to load_plugin_textdomain function #4694
* Fixed: Incorrect Styling for header area #4703
* Fixed: Breadcrumb links are not generating the "amp/" #4708
* Fixed: Google Analytics is not firing when GTM is enabled #4707
* Fixed: Featured Image doesn’t appear on single post #4711
* Fixed: Code improvements for options panel #4622 #4532 #4407 #4090
* Fixed: Advanced section showing blank randomly #4741
= 1.0.62.2 (21st August 2020) =
* Fixed: Gutenberg gallery block caption appearing at the end of the content #4716
* Fixed: Validation error - accordion section must have 2 child tags #4208
= 1.0.62.1 (17th August 2020) =
* Improvement: Removed unwanted javascript from AMP pages #4689
* Fixed: Call to undefined function fifu_amp_url() #4688
* Fixed: jQuery.fn.live() is deprecated warnings #4706
= 1.0.62 (15th August 2020) =
* Improvement: Added Yoast Local SEO plugin compatibility #4170
* Improvement: Added option for changing the tags for the accordion module in AMP Page Builder #4208
* Improvement: Added option for showing primary category of Yoast #4495
* Improvement: Added condition for adding infinite scroll in AMP Woocommerce #4673
* Improvement: Added excerpt option in in-content related posts #3981
* Fixed: AMP not working on the Homepage with WP Ultimate recipe plugin #4538
* Fixed: CSS overiding issue for the list and accourdion modules in AMP Page Builder #4674
* Fixed: Alignment issue on homepage in design one #4676
* Fixed: Debug Errors #4671
= 1.0.61.2 (5th August 2020) =
* Fixed: Removed Helpscout Beacon from Options Panel #4682
= 1.0.61.1 (4th August 2020) =
* Fixed: The right and left arrows are converting into the special characters in AMP #4668
= 1.0.61 (3rd August 2020) =
* Improvement: Added Open By Default option in accordion module of AMP Page Builder #4597
* Fixed: Wrong preview link is generating for the AMP pages and posts #4670
* Fixed: Code improved in category base and tag base remover #4664
* Fixed: Wrong breadcrumb links are generating in the AMP #4666
* Fixed: Optimize gallery code to enhance performance and improve the page load time #4656
* Fixed: Homepage URL has /amp at the end even after enabling AMP Takeover #4662
* Fixed: Background color not appearing in table when created with Tiny MCE advanced plugin #4627
* Fixed: Header right side icons styling improved in Design 3 #3935
* Fixed: The right and left arrows are converting into the special characters in AMP #4668
* Fixed: Removed Shorthand versions of PHP from the code #4659
* Fixed: Wrong width and height in logo for SVG images #4650
= 1.0.60 (27th July 2020) =
* Improvement: Added below the related post hook #4653
* Fixed: Validation errors caused by Autoptimize for logged in users #4586
* Fixed: Styling issues with Reactions plugin by Vicomi #4637
* Fixed: If category name has special characters AMP Pagebuilder was not working #4610
* Fixed: autoplay attribute not working in the amp-vimeo tag #4648
* Fixed: incorrect width and height of logo in AMP #4650
* Fixed: Styling issues with AdsforWP section #4658
* Fixed: Code improvements for options panel #4647
* Fixed: Recent post appearing on pages as well in design 3 #4651
= 1.0.59 (23rd July 2020) =
* Improvement: Added noreferrer noopener attributes on social links #4509
* Improvement: Added webmaster tools meta tags when AMP takeover is enabled #4602
* Improvement: Added Conversion Goals Tracking for AMP Extension #4647 #4655
* Improvement: Added a filter to turn on/off the Aqua_resizer #4641
* Improvement: Added a filter to add/remove fields in Google Analytics #4646
* Fixed: noindex issue on homepage using Yoast #4609
* Fixed: Pagination not working in AMP with Magplus theme #4611
* Fixed: If category name has special characters AMP Pagebuilder was not working #4610
* Fixed: Letter-spacing issue in Swift Theme if RTL is enabled #4598
* Fixed: URL with square brackets [ ] causing issue in galleries AMP #4635
* Fixed: Google Analytics trigger functionality not working #4645
* Fixed: Validation error when css icons and sticky header is selected #4640
* Fixed: If Extension manager was active it was showing incorrect message #4613
* Fixed: Debug warnings #4626 #4639
= 1.0.58.5 (15th July 2020) =
* Fixed: Duplicate title tag on non-amp #4631