forked from ahmedkaludi/accelerated-mobile-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
1869 lines (1701 loc) · 102 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
=== AMP for WP - Accelerated Mobile Pages ===
Contributors: mohammed_kaludi, ahmedkaludi, ampforwp
Tags: AMP, accelerated mobile pages, mobile, amp project, google amp, amp wp, google, plugin, SEO
Donate link: https://www.paypal.me/Kaludi/25
Requires at least: 3.0
Tested up to: 4.9.7
Stable tag: 0.9.97.9
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
AMP for WP is the most recommended AMP plugin by the community. Automatically add Accelerated Mobile Pages (Google AMP Project) functionality on your WordPress site.
== Description ==
AMP for WP automatically adds Accelerated Mobile Pages (Google AMP Project) functionality to your WordPress site. AMP makes your website faster for Mobile visitors.
[What's New in this Version?](https://ampforwp.com/new/) | [Priority Support](https://ampforwp.com/priority-support/#utm_source=wp_org&utm_medium=description-tab-pro-box&utm_campaign=AMP%20Plugin) | [View Demo](https://ampforwp.com/demo/) | [Screenshots](https://wordpress.org/plugins/accelerated-mobile-pages/screenshots/) | [Community](https://ampforwp.com/community/)
[youtube https://www.youtube.com/watch?v=Em1nsE_KaKw]
[youtube https://www.youtube.com/watch?v=QTbkn2rHyqM]
<strong>Extensions</strong><br>
Some useful extensions to extend AMP features, check [AMP Adsense Support](https://ampforwp.com/advanced-amp-ads/#utm_source=wp_org&utm_medium=description-tab-pro-box&utm_campaign=AMP%20Plugin), [Contact Form 7 Support](https://ampforwp.com/contact-form-7/#utm_source=wp_org&utm_medium=description-tab-pro-box&utm_campaign=AMP%20Plugin), [Email Opt-in Support](https://ampforwp.com/opt-in-forms/#utm_source=wp_org&utm_medium=description-tab-pro-box&utm_campaign=AMP%20Plugin) and [Call To Action Support](https://ampforwp.com/call-to-action/#utm_source=wp_org&utm_medium=description-tab-pro-box&utm_campaign=AMP%20Plugin). To view more, go to our [Extensions page](https://ampforwp.com/extensions/#utm_source=wp_org&utm_medium=description-tab-pro-box&utm_campaign=AMP%20Plugin).
<strong>Premium Support</strong><br>
We try our best to provide support on WordPress.org forums. However, One-on-one email support is available to people who bought the [Priority Support](https://ampforwp.com/priority-support/#utm_source=wp_org&utm_medium=description-tab-pro-box&utm_campaign=AMP%20Plugin) only.
<strong>Bug Reports</strong><br>
Bug reports for AMP for WP are [welcomed on GitHub](https://github.com/ahmedkaludi/Accelerated-Mobile-Pages). Please note GitHub is _not_ a support forum, and issues that aren't properly qualified as bugs will be closed.
= Features: =
* NEW - GDPR Compliance
* NEW - Introducing Page Builder 3.0 for AMP! [Learn More & Video](https://ampforwp.com/tutorials/article/amp-page-builder-installation/)
* NEW Default Theme for AMP called Swift
* NEW - 3 Pre-built AMP Layouts for Business websites and landing pages
* NEW - Alexa Metrics Compatibility added
* NEW - OneSignal Push Notifications integration
* NEW - Advanced WooCommerce Support [More Info](https://ampforwp.com/woocommerce/)
* Gravity Forms Support [More Info](https://ampforwp.com/gravity-forms/)
* AMP Plugins Manager - Which allows you to disable a specific plugin functionality only in the AMP version
* Structured Data Options
* Page Break / NextPage (Pagination) Support
* Contact Form 7 Support [More Info](https://ampforwp.com/contact-form-7/)
* Facebook Comments Support
* Github Gist Support
* Email Opt-in Subscription form support in AMP added
* Call to Action boxes and notification bars
* 9 Advertisement sizes - 2 More AD slots added recently
* Comments Forms in AMP.
* Native AMP Search functionality.
* Design 3 [Watch the Video Overview](https://www.youtube.com/watch?v=ub1pwskt3Rc)
* Disqus Comments Support
* Google Tag Manager Support
* Page, Category & Tags Support Added
* Custom AMP Editor - Which allows you to override your Content that you had written in Post or page, so you can add the different content just for AMP.
* Mobile Redirection - More than 50% of your traffic is from mobile and you aren’t doing anything to improve their user experience, which means you are falling behind on SEO and it can result in lower SERPS. Lightning fast mobile version means faster User experience means more engagement which directly results in the lower bounce rate.
* Custom Post Type Support
* Star Ratings
* Drag & Drop Page builder Added
* 4 Designs for AMP
* Yoast SEO support on AMP pages and other SEO plugins
* AMP WooCommerce Support
* Switch on/off Support for Pages & Posts on AMP
* Translation Panel & RTL
* Internal AMP linking - You can browse AMP pages internally
* Related posts below the post
* Recent Comments list
* Automatically integrate AMP to your website.
* Google Adsense (AMP-AD) Support with 4 different Ad slots across the layout! The First Plugin to have this capability.
* Google Analytics Support.
* User Friendly Theme Options Panel.
* Unlimited Color Scheme.
* Image Logo Upload.
* Supports Posts and Pages.
* Proper rel canonical tags which means that Google know the original page.
* Overlay Navigation Menu bar.
* Social Sharing in the Single.
* Sexy Design.
* Separate WordPress Menu for AMP version.
* Page builder & Shortcodes Compatibility.
* Carousel support for Gallery.
* Better Image stretching and resizing.
* Youtube Video Embed Support.
* Vine Embed Support.
* Twitter oembed Support.
* Instagram Embed Support.
* Facebook Video Embed Support.
* RTL Support
* Custom AMP FrontPage
* Notifications
* Chartbeat, Hi-stats, Yandex Metrika, Piwik, Segment.com, StatCounter, Effective Measure and comScore Support
* Incontent & DoubleClick Support
* Great Support & Active Development.
* Widgets & WooCommerce
* Genesis SEO Support
* Breadcrumb Support added
* Facebook Instant Articles Support Added
* AMP Installation Wizard that makes it easy to setup for new users.
* Category base remover support
* Tag base remover support
* 7 New Social Media Integrations added (Reddit, Tumblr, Telegram, Digg, StumbleUpon, Wechat, Viber)
* AMP Theme Framework Core Support Added. You can now create AMP templates of your own in just minutes. **[More](https://ampforwp.com/amp-theme-framework/)**
* NEW - Make AMP & Non-AMP Same with just one click!
* NEW - Allows you to use AMP as primary website!
**[JOIN CHAT GROUP COMMUNITY](https://ampforwp.com/community/)**: Purpose of this group is to get proper suggestions and feedback from plugin users and the community so that we can make the plugin even better.
= Getting Started: =
**[1. User Documentation:](https://ampforwp.com/help/)** The AMP for WordPress plugin is easy to setup but we have some tutorials and guides prepared for you which will help you dive deep with the plugin.
**[2. Developer Docs:](https://ampforwp.com/help/#extend)** We have created special documentations for developers and semi technical users who are willing to modify the plugin according to their own needs.
**[3. Fixing AMP Validation Errors:](https://ampforwp.com/priority-support/#utm_source=wp_org&utm_medium=description-tab-pro-box&utm_campaign=AMP%20Plugin)** We will personally take care that your website’s AMP version is perfectly validated. We will make sure that your AMP version gets approved and indexed by Google Webmaster Tools properly and we will even keep an eye on AMP updates from Google and implement them into your website.
**[4. Community Support Forum:](https://ampforwp.com/help/#support-forum)** We have a special community support forum where you can ask us questions and get help about your AMP related questions. Delivering a good user experience means alot to us and so we try our best to reply each and every question that gets asked.
**[5. Frequently Asked Questions:](https://ampforwp.com/faq/)** Some of the Frequently Asked questions.
== Installation ==
**[Visit Help area for the Documentation:](https://ampforwp.com/help/)**
[youtube https://www.youtube.com/watch?v=Em1nsE_KaKw]
**[Visit Help area for the Documentation:](https://ampforwp.com/help/)**
== Frequently Asked Questions ==
= Can I add analytics? =
Yes, you easily can. In fact, we have support for 12 Analytics companies. Including Google Analytics, Facebook Pixel, StatCounter, QuantCast, Chartbeat, comScore to list a few. Also, we have Google Tag Manager (GTM) support as well.
= Can I add Ads in my AMP pages? =
Yes, you can. We have 6 ad placement slots that are built in and strategically placed to get maximum views. Also, we have [an extension](https://ampforwp.com/advanced-amp-ads/) from which you can insert ads between the content, will get more ad slots and also add custom banners to all the available slots.
= Can I extend/Change the AMP design, so it suits my needs? =
Yes, you easily can. We have created this plugin in such a way that it can easily be extended. Check out our [AMP Theme Framework](https://ampforwp.com/tutorials/article/getting-started-amp-framework/)
= Do you have any prebuilt designs? =
Yes, we have AMP themes section where we have free and paid designs available. We also update it regularly. You can check it out our [AMP Themes](https://ampforwp.com/themes)
= I'm a developer and I want to add custom functionality for a client, can I do that? =
Yes, of course. This plugin is very developer friendly, we have lots of hooks and filters that you can use to extend and customize according to the requirements. Also, we have [developer documentation](https://ampforwp.com/tutorials/article-categories/developer-documentation/) which we update regularly.
= How do I report bugs and suggest new features? =
You can report the bugs [here](https://github.com/ahmedkaludi/Accelerated-Mobile-Pages/issues)
= Will you Add New features to my request? =
Yes, Absolutely! We would suggest you send your feature request by creating an issue in [Github](https://github.com/ahmedkaludi/Accelerated-Mobile-Pages/issues/new/) . It helps us organize the feedback easily.
= How do I get in touch? =
You can contact us from [here](https://ampforwp.com/contact/)
== Screenshots ==
1. AMP Homepage
2. AMP Single Post
3. Post Navigation in Single
4. Sticky Social sharing icons
5. Overlay Navigation menu sidebar.
6. Page builder of the Single article. You can drag and drop any element.
7. Single post of Design One
8. GTMetrix Performance Report
9. Google PageSpeed Insight report for AMP
10. Homepage of Design One
11. Pingdom Speed Report for AMP
== Changelog ==
= 0.9.97.9 (1st August 2018) =
* Minor Improvements
= 0.9.97.8 (24th July 2018) =
* Fixed: AMP renders with ?q after the /amp #2361
* Fixed: iThemes Sync can not connect to the site. #2380
* Fixed: H1 to H6 styling is not reflecting in the Swift theme #2383
* Fixed: Underline on Links function is not working. #2372
* Fixed: WordPress Admin Color Scheme not applying #2390
* Fixed: Breadcrumbs are not disabling when the sidebar template is selected #2376
* Fixed: All the Images are Adding AMP at the End of their URL. #2391
= 0.9.97.7 (18th July 2018) =
* Fixed: PageBuilder not loading on frontpage #2360
* Fixed: 500 error on somepages due to open wp_query by other plugins
* Fixed: License key reupdating #2261
* Fixed: AMP renders with ?q after the /amp #2361
= 0.9.97.6 (14th July 2018) =
* Fixed: Error and Warning on Structured Data for Logo. #2360
* Fixed: Category Bulk tool breaking meta boxes #2335
= 0.9.97.5 (11th July 2018) =
* Fixed: Title disappearing in Design 1,2,3 when legacy pagebuilder is enabled #2341
* Fixed: ld+json getting a broken when special characters are added in the image. #2346
* Fixed: Hide by Category Breaking post metabox #2330
* Fixed: Hiding excerpt when global $redux_builder_amp is empty #2330
* Fixed: When Google Tag Manager is enabled, only Google Analytics should get disabled but not other analytics. #2340
= 0.9.97.4 (09th July 2018) =
* Fixed: Huge Performance upgrade in the way fetching the logo url #2317
* Fixed: Fatal Error due to unable to modify values in Structured Data Object #2327
* Fixed: Seperate option for Featured Image in pages in Swift theme #2328
* Fixed: `<p>` tags disabling where not wanted #2330
* Fixed: Fatal error in contact form module while ninja form or gravity form plugins are not activated #2310
* Fixed: Woo Commerce Category page not working properly #2333
* Fixed: Few issues related to amp-facebook-comments #2300
* Fixed: Limit number of Tags and Category to 500 in Hide AMP-Bulk tools #2336
= 0.9.97 (27th June 2018) =
* For more details check out [the blog post](https://ampforwp.com/0-9-97-released-strengthening-of-foundation-89th-update/)
* Fixed: Extraposition attribute left in CSS Design #2 #2119
* Fixed: Non-AMP header link not working #2109
* Added: Create an Ad Above the Post Content #2155
* Fixed: "AGO" text was not translatable #2158
* Added: Filter created `ampforwp_header_url` to modify logo url #2141
* Fixed: Removing the text "amp" in footer view non-amp-link #2158
* Added: Compatibility WP user Avatar plugin added #2011
* Fixed: Design 2 - meta info producing a block of empty HTML #1969 #1954
* Added: Pocket and Hatena Bookmark social share buttons Added #1652
* Fixed: External Links are appended with "amp" at the end of the url in content. #2174
* Fixed: Some Issues Found in Design #3 #2130
* Fixed: ScoopVersion: 1.4 By boostdevelopers theme displaying the error only in the category #1683
* Fixed: Page featured Image is not displaying in the Swift theme #2136
* Fixed: Dropcap breaking the youtube embed code #2157
* Fixed: Bulk hide by default option is requires Permalinks to be saved #2145
* Fixed: Fully compatibility with muffin page builder #2180
* Fixed: Incontent Related Post Issues #2078
* Fixed: Search page should not have AMP version of the page and not in search result #2191
* Added: Control added to modify Retina Images resolutions #2099
* Added: Created an option to duplicate a page builder element #1986
* Added: Image Caption is not displaying below the Image in design 1,2,3 #2101
* Fixed: Post pagination not working properly in D1, D2 and D3 #2168 #2243
* Fixed: Auto re-save permalink if the options in reading setting page get changed #2190
* Fixed: Leave a comment not looking good in Swift theme #2150
* Added: Social icons for pages. #2162
* Added: Create an option to pull canonical from Yoast #2118
* Added: Full Support for All in one SEO #1720
* Fixed: Single with sidebar CSS should only load if that layout type is selected #2091
* Fixed: Required Filed is not working in the Repeater in Page builder #2217
* Fixed: alt in `<div>` causing validation errors. #2093
* Added: Drop Down Menu Support in Swift Header Menu #2095
* Added: Parallax Setting Added in PageBuilder #2095
* Added: Multiple Layout Settings added in Feature Module in Page Builder #2095
* Added: Add the option changing the sliding speed of slider in "Slider module" of AMP Page Builder #2218
* Added: Created an option Related Post link in non amp #2201
* Fixed: Removed Jannah LazyLoad on AMP Mode #2224
* Fixed: Custom post types with custom taxonomy not working in AMP #2209
* Fixed: frontpage and homepage not working properly AMP take over #2153 #2277
* Added: Button field created in Feature module #2068
* Added: Excerpt should also work on homepage and categories page #2176
* Fixed: Options panel breaks in when RTL in WP Dashboard #2176
* Fixed: Featured image from Custom fields in page builder Category module #2237
* Added: Forms Module Support added in PageBuilder #2221
* Fixed: Paginated AMP URL on the category are opening to 404-page #2233
* Fixed: Ads not displaying properly in RTL #2227 #2138
* Fixed: single quotation (') in text module breaking AMP page builder #1940
* Added: Filter created to modify `ampforwp_loop_image_update` image arguments in components of AMP theme framework #2057
* Added: Option to change the locale of Facebook comments #2127
* Added: Search option in options panel #2088
* Fixed: Accordion not working when the user enters some data in Description with HTML Tags #2088 #2097
* Fixed: Internal links now working with ?amp=1 #2204
* Fixed: UTM Parameters not working properly with AMP #2223
* Fixed: Multiple Slider module of AMP Page builder not working #2090
* Fixed: Hide AMP by categories option should hide by default in the backend of that specific post #2112
* Added: IP Anonymization in Google analytics #2135
* Fixed: Improvement in the styling of AMP option panel #2102
* Added: Added new fonts control for Content in Single page #2122
* Fixed: Legacy page builder button styling is not loading properly #2036
* Added: Filter added so we can disable Comments on specific pages `ampforwp_comments_visibility` #2170
* Fixed: Improvement in Excerpt on small screen option #2034
* Added: Comments on Pages #2229
* Fixed: Pagination not working for some websites #2241
* Fixed: "Menu" option in Footer connected with Swift #2146
* Added: Wistia Support #1875
* Added: Add option in page builder to give the specific name to all modules #2251
* Added: Compatibility with Muffin Builder #2137
* Fixed: AMPforWP Option panel styles are overriding other theme's options panel if both use Redux Framework #2121
* Fixed: AMPforWP Option panel styles are overriding other theme's options panel if both use Redux Framework #2121
* Added: Render all the AMP Components added in Post Editor #2216 #2228
* Fixed: "Gap" Module of ThemeCo breaking the AMP pages #2220
* Added: Search widget compatibility #2143
* Added: Advertisement Module created in AMP Pagebuilder #2131
* Fixed: Performance issue with the function `ampforwp_get_comments_gravatar` #2234
* Fixed: Empty the amp pages, when the Clearfy HTML compress is enabled #2110
* Fixed: The attribute 'value' appearing in tag 'a' throwing the validation error #2262
* Fixed: Versioning of Styles and Scripts of redux-core #2126
* Added: Related Posts based on X days #2132
* Fixed: Warning in custom-sanitizer.php #2173
* Added: vuukle comment support #2075
* Fixed: Facebook Comment should not appear on the Checkout page, Add to cart page, or shop page #2170
* Added: SpotIM comment support #2075
* Added: Additional Controls added in Design3 Featured slider #2222
* Fixed: Username in AMP Option panel color was too light #2266
* Added: Settings created to modify H1 to H6 #2059
* Fixed: AMP_QUERY_VAR debug issue #2265
* Added: Custom page template in AMP #1923
* Fixed: Comments Button is not displaying in Design #3 #2163
* Added: Ability to add Forms Shortcodes in footer Widgets #2226
* Added: Option to add rel="nofollow" in AMP page builder button module #2239
* Added: Background video option in amp page builder #2195
* Fixed: Drop Down Menu Support in Swift Header Menu #2095
* Fixed: Yoast Description not getting added in AMP #2159
* Fixed: Improvement in styling of AMP option panel #2102
* Fixed: Hide AMP Bulk Tools Improvements #1867
* Added: Compatibility with the Relevanssi Plugin #1503
= 0.9.96 (2nd June 2018) =
* Added: Fully GDPR Compliance
* Fixed: GTM not working
= 0.9.86.1 (8th May 2018) =
* A bug causing validation issues has been resolved.
= 0.9.86 (3rd May 2018) =
* For more detials check out [this blog post](https://ampforwp.com/0-9-86-released-getting-ready-for-future-87th-update/)
* Added: GDPR Compliancy #2040
* Added: Muffin Page Builder Compatibility #1455 #1893
* Added: Thrive leads compatibility #2067
* Fixed: Load structured markup json in Footer to improve performance #1945
* Added: Font Size and Font Family Controls added in Content Presentation Module #1962
* Added: Font Weight Control added in Text Module in PageBuilder #1962
* Added: Other necessary controls added in Content Presentation Module #1962
* Added: New Design called "Design 4" added in Content Presentation Module. #1962
* Fixed: License Activation process connected with AMP extensions #1981
* Added: Icon Selector control added in Button module in AMP Page Builder #1962
* Added: Filter called `ampforwp_get_comments_gravatar` to modify Author Avatar Images #1949
* Fixed: Validation error fixed by removing json+ld values to remove CDATA #1977
* Added: Icon Adjustment Option is added in the Button Module #1962
* Fixed: Debug Warnings fixed #1976
* Fixed: If AMP support on post and page is disabled then mobile redirection was not working #1979
* Fixed: Responsive element added in Image Module #1962
* Fixed: Custom Post and Custom Taxonomies Archives not working in AMP #1957
* Fixed: AMP take over is on and AMP support on the home page is disabled it was redirecting to some other pages #1994
* Fixed: Design 1 and Design 2 shouldn't show 'social' tab #1996
* Added: AMP WordPress Theme notice
* Added: Rewrite Rules Added for WooCommerece #1957
* Fixed: AMP Takeover blog search results giving blank page #1990
* Fixed: Swift pagination markup is present even the page has no pagination #2000
* Fixed: Pagination breaking on second page on Archives when Blog page is not set #1998
* Fixed: Added proper Google API jump link #1966
* Fixed: Advance Index and no-index controls did not had description #1978
* Added: Filter added `amp_blacklisted_tags` in blacklist-sanitizer file
* Added: Hyperlink for image module added #1989
* Added: `ampforwp_get_frontpage_id` a common fucntion created to get post id for AMP frontpage #2025
* Fixed: Comments controls were not working properly #1987
* Fixed: Fatal Error after updating the plugin from 0.9.73 to 0.9.83 version #2017
* Fixed: Filter created `ampforwp_modify_rel_url` to modify rel canonical URL #2012
* Fixed: Remove structured data json if removed from AMP options panel
* Fixed: amp widget appearing twice in design one #2008
* Fixed: Gif in content + Lightbox feature throws validation issue. #2032
* Added: New Features in the Page builder Modules #2029
* Fixed: License Key was not working properly #2026
* Fixed: Instagram comment view is getting cut off in Swift Theme #2002
* Added: Icon module support added in Desgin 1, 2 & 3 #1997
* Fixed: if GD or ImageMagick library is not present in the server then send the original image #2037 #2038
* Fixed: Swift theme homepage (Non-AMP) image resizing issues in Mobile version #1992
* Fixed: Header Element not working in Swift theme #1967
* Fixed: Stop Loading of Latest post scripts on Homepage and Frontpage #2041
* Added: Filter created `ampforwp_non_amp_links()` so users can have all the internal links non-amp #1973
* Fixed: Sanitize the archive description in loop component #1974
* Fixed: Double AMPHTML when FBIA Plugin is active #2043
* Fixed: Image Div is loading even if the image is not present in Swift #2033
* Fixed: Custom AMP editor is visible on pages (post type) even if the Page Support is off from amp options panel #2047
* Fixed: When 'Structure Data for WP' plugin active, Schema type in Structure section should hide #2049
* Fixed: Bugs in Video Module in AMP pagebuilder #2048
* Added: Autoplay feature added in Video Module #2048
* Fixed: Throwing error when Product Structured Data is selected #1975
* Fixed: Advanced CSS is not loading because the files are with hosting path #2046
* Fixed: Double Quotes breaking the html #2004
* Removed: Blog option is removed from AMP Options panel and it is connected with Pages option Under Reading Settings #2027
* Fixed: amphtml should not be created for 404 pages #2018
* Added: 404 Template added, useful for AMP Takeover #2042
* Fixed: Genesis meta titles are lost and not rendering correctly #2050
* Fixed: Search blank on AMP Takeover #1990
* Fixed: Remove Unused js files from Paginated Post Pages #2001
* Fixed: Extra Space adding in H1 and other SEO tags #2054
* Fixed: Undefined Index when called from robot #1960
* Fixed: amp facebook comment Js not loading to the custom front page of the swift theme. #2053
* Fixed: Tags label is not working properly when RTL Support on #1719
* Fixed: View Non-AMP Version In the footer link has an error #2066
* Fixed: Squirrly SEO is Adding the Javascript code in AMP #1696
* Fixed: Translation option issue when using POT file method #1941
* Fixed: amp-facebook-like extension is missing on Custom Frontpage #2061
* Fixed: GTM option repositioned #2056
* Fixed: Menu is appearing on left side instead of Right side when RTL support is ON for Design3 #1928
* Fixed: Sidebar Bugs #1972
* Added: Table Styling in Swift #1961
* Fixed: Genesis index, follow options not being rendered #2071
* Added: Filter created `ampforwp_robots_meta` to modify robots meta information #2071
* Fixed: PHP Notices #2065
* Added: Add a new hook `ampforwp_after_amp_menu` after the menu in all designs #2072
* Added: New Look to Options panel #1823
* Added: Retina Image Support added #1846
* Fixed: Pagebuilder hrefs were stripped in hebrew language #2089
* Fixed: Warning Fixed #2083
* Fixed: Gallery module images not loading in Firefox #1980
* Fixed: Pagebuilder Improvement #2024
= 0.9.85.5 (21st April 2018) =
* Added: Filter added to modify frontpage post id `ampforwp_modify_frontpage_id`
* Added: Filter added to modify amp template directory `ampforwp_template_locate` #1982
* Other minor bugs fixed
= 0.9.85.3 (12th April 2018) =
* Added: Custom Post type Archive Page support #1995
* Fixed: AMP TakeOver redirection issues #1994
* Fixed: Debug errors #1976
* Fixed: Social Profile pages were hidden for Design 1 to 3 #1996
* Fixed: Structured Data insertion was adding CData causing validation error #1999
= 0.9.85.2 =
* Minor Bugs fixed
= 0.9.85.1 =
* Minor Bugs fixed
= 0.9.85 (3rd April 2018) =
* For more detials check out [this blog post](https://ampforwp.com/0-9-85-released-stability-update-86th-update/)
* Fixed: Fatal error: Allowed memory size on FrontPage #1865
* Fixed: Proper Parameters for Pinterest Sharing #1853
* Added: Extra settings added in Button Module
* Added: Extra settings added in Text Module
* Fixed: Proper Parameters for Pinterest Sharing
* Fixed: Unwanted fields are removed form the Repeater in Button module
* Added: Enable/disable option added Related Posts #1829
* Fixed: Legacy PageBuilder option Repositioned #1851
* Fixed: Display the img tag only if source is present #1869
* Fixed: Huge design improvements in Swift theme #1818
* Added: Hook for Between Related Post is Added #1874
* Added: Blurb module text size and background color added
* Fixed: Comments Pagination issues #1816
* Added: Counter Module added
* Fixed: Date 48 years ago #1864 #1876
* Added: Ability to pass post id in amp_content() #1872
* Fixed: Changed the way images we fetched in WooWidget #1847
* Fixed: Changed the position of layout in Pagebuilder #1873
* Added: Pricing Module
* Fixed: Changed the position of layout in Pagebuilder #1873
* Fixed: amp_aq_resizer was not able to process the outside url #1881
* Fixed: Advanced Google Analytics improvements #1630 #1860
* Added: Field Added For ON & OFF in Page builder #1870
* Fixed: Two paginations in search pages in Swift theme #1855
* Fixed: Extra Div if categories not available #1856
* Fixed: removed debuged tags #1870
* Fixed: Published date connected with AMP options Panel #1888
* Added: Featured Image option in Swift #1889
* Added: Separate Blog settings #1887
* Fixed: single post ads should not load on pages #1896
* Fixed: Ads should not load on FrontPage if PageBuilder is enabled #1885
* Fixed: Background Image Support for the Columns #1871
* Added: Blockquotes design for Swift #1894
* Added: Co-Authors Plus compatibility #1895
* Added: pagebuilder for custom post types #1884
* Added: Border option is connected to options panel #1818
* Added: Responsive AD unit support #1852
* Added: Sub category arrow symbol is added in Swift theme #1818
* Added: Search text color is connected to options panel #1818
* Fixed: Removed notice when no posttype selected #1884
* Added: Ability to overwrite page template the WordPress way like front-page.php and page-{id}.php #1902
* Added: Ability to overwrite author page template the WordPress way like author.php and author author-name.php #1902
* Added: Lightbox Support for the images #1892
* Fixed: No mobile redirection when Dev mode is enabled #1907
* Added: Option to hide Author name in Swift #1890
* Fixed: Script facebook-comments should not load for Frontpage #1897
* Added: amp-facebook comments for AMP2WP #1911
* Added: Alt tag in all modules #1898
* Added: Sanitizers in Footer and sidebar widget in Swift #1835
* Added: Dropcap support #1900
* Added: Proper styling for iframes and videos in Swift theme #1909
* Fixed: Non-AMP link fixed for AMP Takeover #1916
* Fixed: Swift connected with Breadcrumb option #1915
* Added: Uninstall option created to completely remove AMPforWP data #1903
* Fixed: Recipe Structured Data requires name attribute #1917
* Fixed: No amphtml when It is hidden from Categories #1919
* Fixed: Content is breaking when Inline Related Post option is enabled #1912
* Fixed: Proper redirection setup for AMP Takeover #1913
* Added: Social media profiles added in menu #1901
* Fixed: No Ads should display on Frontpage or Posts if Pagebuilder is enabled #1885
* Added: #1899 Proper conditions for amp-analytics script
* Fixed: Turn off option not working by default fixed #1537
* Fixed: BreadCrumbs Should not load when PageBuilder is enabled #1925
* Fixed: Removed unwanted elements loading while pagebuilder is enabled #1929
* Fixed: amp-web-push should not load on Homepage and Blog #1930
* Added: SmartMag theme Compatibility #1905
* Fixed: Template overriding not working in child theme #1920
* Fixed: Horizontal scrolling in Swift #1844
* Fixed: Home page title should not be visible in AMP takeover #1921
* Added: Carousel Module Added #1937
* Fixed: Comments pagination not working #1816
* Fixed: Comments pagination not working #1816
* Added: Glue html css compatibility #1932
* Added: Data Caption Support on AMP Instagram Embed #1938
* Added: Ability to pass {author_name} and {author_id} added in Advance Analytics #1936
* Fixed: Scrollbar in Header area in Swift in firefox #1818
* Added: Disqus iframe height adjustment option #1935
* Fixed: Options panel conflict fixed with Mobius theme #1942
* Fixed: Problem with Button in Mobile view in Swift #1926
* Fixed: Removed canvas tag in AMP version causing validation errors #1880
* Fixed: Getting Conflict with Facebook Button by BestWebSoft #1740
* Added: Option to enter the "ID" on CTA button module #1931
* Added: Option for open same window in CTA module of page builder #1866
* Fixed: Logo fetch causing Huge performance issue #1679
* Fixed: Blurb module's default values were not set #1952
* Fixed: Allow script with application/ld+json #1958
= 0.9.84 (14th March 2018) =
* Added: Polylang Frontpage compatibility added #1779
* Fixed: Proper link for Linkedin added #1820
* Fixed: Incorrect function name was Added #1827
* Fixed: Thumbnail resizing issue in Swift #1828
* Fixed: Thumbnail issue in Loops of Design 3 #1714
* Fixed: Hide post builder for Swift #1824
* Fixed: To avoid warnings when there are no pages in WordPress #1810
* Fixed: Condition for the Thumbnail for Swift #1733
* Fixed: Proper Styling for footer for Swift #1733
* Fixed: Line height issue and CSS editor not working in Swift #1821
* Fixed: Renamed aq_resize to ampfrowp_aq_resize to avoid conflicts #1838
* Fixed: Add the prefix to avoid conflicts #1817
* Fixed: Added Custom format option in amp_date #1845
* Fixed: Removed amp-img tag where blank SRC in Page builder #1843
* Fixed: Pagebuilder modal max-height removed so it will become full width #1843
* Added: An option for select target type in Button Module #1822
* Fixed: Remove AMP category widget if swift is enabled #1790
* Fixed: Filter added change mode type #1833
* Added: Rewrite rule for .html blog page #1775
* Fixed: Filter added change mode type #1833
* Fixed: Swift Footer Widget Sanitizer Added #1800
* Fixed: No OneSignal widget when PageBuilder is enabled #1840
* Fixed: span tag added around the pagination text #1834
* Added: Page specific option to add script/html and styles in page builder #1831
* Fixed: noindex,nofollow in AMP when Dev mode is enabled #1839
* Added: Jarida theme compatibility added #1842
* Fixed: noindex,nofollow in AMP when Dev mode is enabled #1839
* Fixed: Replace value attribute only from html tags. Otherwise it is removing value from * shortcodes which is breaking the whole page. #1738
* Added: Underline option for content links added #1808
* Added: Page specific option to add RTL in page builder #1858
* Added: Converts AMP ads to normal so ads show when takeover is enabled in Normal Mode #1724
* Added: Converts AMP Analytics to normal so Analytics works when takeover is enabled in Normal Mode #1724
* Fixed: Phone icon proper alignment in Design3 #1730
* Added: ADS for WP activation box in Extensions tab
* Added: New design field added #1861
= 0.9.83.1 (8th March 2018) =
* Fixed: Pagebuilder contents not shows on custom home page #1794
* Added: Header hook added `ampforwp_advance_header_layout_options`
* Fixed: Load admin files only in admin pages #1799
* Fixed: Conflict with WP bakery pagebuilder #1783
* Fixed: Slide in Menu break in RTL mode #1825
* Fixed: Validation issue in loops due to empty attributes #1795
* Fixed: Featrued Image connected Properly with Swift theme #1733
* Fixed: Changed the disqus.php to disqus.html to pass authentication #1788
* Added: CSS styling for Loop on shop page #1803
* Fixed: Facebook comments not work in swift #1789
* Fixed: Style AMP Category module in Footer swift #1790
* Fixed: Load aq_resizer only in AMP #1805
* Fixed: Proper markup for Pinterest in Design3 and Swift #1793
* Fixed: Proper url for vk
= 0.9.83 (03rd March 2018) =
* Added: Ability to add amp-carousel and amp-selector directly into WYSIWYG Editor #1588
* Fixed: Debug error caused by Playbuzz Sanitizer #1674
* Added: Show default gravatar for comments #1758
* Fixed: Implement Swift Thumbnail Regeneration in all the designs #1709
* Fixed: To avoid debug error in swift
* Fixed: Translation improved for some strings #1678
* Fixed: Stop AMP takeover for Feed pages #1767
* Fixed: Menu issues In Design 1 & Design 2 after changing from AMP-Sidebar #1565
* Fixed: AMP Options panel Not Working After Update (0.9.82.1) version #1761
* Fixed: Move the label to the top [UX improvement] #1746
* Fixed: Error with Vue #1745
* Added: Video Module added in AMP Page Builder #1750
* Fixed: Sidebar menu is not scrollable swift theme #1769
* Fixed: View Non-AMP should be usertrailingslashit #1772
* Fixed: Proper structured data for Blogpage #1660
* Fixed: Legacy Page Builder not working after the update #1773
* Fixed: Content blank when only image in content #1778
* Fixed: Comment ID display issue fixed #1758
* Fixed: PHP Warning: A non-numeric value encountered in components/logo/logo.php on line 52 #1764
* Fixed: Yummly support added in Swift #1708
* Fixed: Demo Link updated #1781
* Fixed: CSS is not loading in Swift Theme #1780
* Added: Ability to add Advertisement or Sponsored label under ads #1710
* Fixed: Featured images distortion in related posts #1684
* Fixed: Implement Swift Thumbnail Regeneration in all the designs #1709
* Fixed: noarchive instead of nofollow in Archive pages #1693
* Fixed: Internal links of tags are showing “/amp” after changing the end point to “?amp” in design 2 #1752
* Fixed: line height is added for the logo in Swift design
* Added: Class for Custom Frontpage #1787
* Fixed: Recent post enable disable for Swift theme #1784
* Fixed: Connect Show/Hide AMP option with AMP takeover#1786
* Fixed: Added sanitizer to footer Widget #1756
= 0.9.82.1 (18th February 2018) =
* Selector code reverted due to it's effect on carousel
= 0.9.82 (18th February 2018) =
* View more details on https://ampforwp.com/0-9-82-released-stability-update-82nd-update/
* Logo Resizing calculation by Pixels and resizing bug solved.
* Update Notification in the Admin panel will only appear in the AMP options panel. So it will not annoy you anymore.
* Glue underline is applying for some reason
* Fatal error after 0.9.81 fixed
* Facebook comments loading twice on swift
* PHP Notice: Undefined variable: post_author_name
* Pagebuilder fix in version 0.9.81 Compatibility with Yoast and other plugins #1749
* Home loop modifier option added. Allows you to exclude the categories from the loop or include the Custom Post type in the homepage loop.
* amphtml Conflict with Instant Article for Facebook resolved
* /amp folder in the theme is applying changes in plugin, which causing a bug, but it’s been fixed
* Backward Compatibility for AMP Preview
* SEO Section Improvements
* Wrong comments count on AMP pages
* AMP Allow selector in the The Content. You can add tabs and AMP components directly into the loop.
* If we turn off the Homepage Support then Blog is turned off as well, solved.
* Post Pagination have two options like “Number of pages” and Previous & Next.
* Removed the dot from the one Signal Service worker URL if the subdomain isn’t added (Causes Validation issues.)
* Extra Space due to empty divs in Design 3
* Remove alt from a tag in the AMP version caused many validation issues.
= 0.9.81 (15th February 2018) =
* Edge case fatal error on features.php fixed
* Admin dashboard messup CSS fix #1731
* Custom CSS Output added in Swift
= 0.9.80 (15th February 2018) =
* View More details on the [blog post](https://ampforwp.com/introducing-swift/)
* AMP Page Builder 3.0: The AMP Page Builder is a lightweight and much stable than ever and works flawlessly! [Read More](https://ampforwp.com/tutorials/article/amp-page-builder-installation/)
* Swift: The New Default Theme, which you can select from the design section of the Page builder.
* A way to create a Child Theme for AMP [read more](https://ampforwp.com/tutorials/article/child-theme-amp/)
* Make AMP & Non-AMP Same: We have an amazing new option called AMP to WP which will generate the WordPress version of the AMP design which will be viewed on the canonical version of the website.
* AMP Takeover: You can deliver a fully AMP compatible website with this option. It will basically take over the non-amp version and deliver an AMP version to your desktop and mobile users, on WordPress & AMP version. That’s why it was called AMP Takeover
* Logo Resizing made easy
* Typography Options
* 3 Headers design in swift theme
* Error while sharing the image on Pinterest #1699
* Homepage support was not working ( when page support is off ) #1695
* Custom Permalinks rewrite issue solved #1689
* Custom post type was appearing two types #1688
* Theia Post Slider plugin incompatibility with post pagination fixed #1677
* Link to the categories in loop of Design 3 #1632
* amphtml was not working when plain permalink selected along with static page as homepage #1614
* AFS Analytics Integration added #1605
* Removed the blank spaces from analytics id field to deliver a good UX. #1599
* ?amp endpoint feature added #1561
* Ability to remove the excerpt and image from related post #1510
* Thumbnails on-the-fly generation added for better control over the design.
= 0.9.74 (23rd January 2018) =
* View More details on the [blog post](https://ampforwp.com/0-9-74-released-stability-update-79th-update/)
* Fixed: Push Notifications button alligned in center #1500
* Added: Meta robots tag support from Yoast #1563
* Added: Option to Disable wptexturize/smart-quotes Support #1458
* Fixed: Changed the label id to avoid conflict with Advanced AMP Ads #1591
* Fixed: esc_attr causing validation issues with single and double quotes #1616
* Fixed: Image stretching problem resolved when "Featured Image from the content" was set #1580 #1582
* Added: Create Template by Custom taxonomy name like product-jeans.php in AMP Theme FrameWork #1594
* Added: Custom Post type support added in the Core #1612
* Fixed: custom-amp-content.php cleaned with PHPCS #1497
* Added: Basic Product(WooCommerce) support added #992 #1276 for full WooCommerce Support please check this [Extension](https://ampforwp.com/woocommerce/#utm_source=readme-log&utm_medium=0.9.74-readme&utm_campaign=AMP%20Plugin)
* Added: Proper fallback support added if the current active AMP theme is not available #1624
* Fixed: Resolved debug errors #1622
* Added: All in One SEO compatibility #1557
* Fixed: Load AMP Styling only on AMP pages #1441
* Added: 7 New Social Media Integrations added (Reddit, Tumblr, Telegram, Digg, StumbleUpon, Wechat, Viber) #1265
* Fixed: itemprop="url" was adding in non-amp #1626
* Fixed: SiteOrigin Pagebuilder compatibility with Custom Frontpage #1592 #1593
* Added: MediaAce lazy load compatibility of Bibmer Theme #1472
* Fixed: Content Links plugin was causing validation errors #1569
* Added: Filter added called get_content_from_dom to modify the output in AMP function #1462
* Added: amp_breadcrumb component added in AMP Theme Framework #1636
* Fixed: Sidebar Styling and proper sanitizer updated
* Added: amp_author_meta component added in AMP Theme Framework #1641
* Fixed: amp_post_pagination component improvement in AMP Theme Framework
* Added: Ability to add link classes in amp_post_pagination in AMP Theme Framework
* Fixed: amp_author_meta image code improvement in AMP Theme Framework
= 0.9.73 (15th January 2018) =
* View More details on the [blog post](https://ampforwp.com/0-9-73-released-stability-update-78th-update/)
* Added: Instagram Sanitizer added to process Instagram Embeds inside the BlockQuotes #1581
* Added: Option Created to Enable/Disable rel="nofollow" for View Non-AMP link #1572
* Fixed: Custom AMP Content was not working with Elementor Pagbuilder #1495
* Fixed: ampforwp_is_front_page() is not working in the newspaper theme #1583
* Added: Allow people to use multiple Analytics on AMP #1124
* Fixed: 'https' error with PlayBuzz Embeds #1481
* Added: Option to show last modified date instead of Published date #1496
* Fixed: Add proper permission for ampforwptourinstaller page
* Fixed: Debug warnings #1586 and #1459
* Fixed: A lot of Security Fixes has been done #1497
* Fixed: Removed lot of unused code #1497
* Added: AMP skip for checkout page #1443
* Added: Show the list of Child pages at the end in Parent Page with on/off #1551
* Fixed: Properly strip shortcodes fom Structured data description #1512
= 0.9.72 (6th January 2018, Happy New Year) =
* View More details on https://ampforwp.com/0-9-72-released-stability-update-77th-update
* Related Posts Image stretching in Design 3 AMP theme Framework #1482
* RTL option must be integrated into AMP theme Framework #1562
* `DOMDocument::loadHTML():` Attribute itemprop redefined warning fixed #1539
* Created an option to add Author bio article in Facebook Instant Article #1521
* Options to add push notification button above and below the content #1571
* Copy the Content button for Custom Post types #1532
* Alexa Metrics Compatibility added #1536
* Logo styling added with amp_logo. So styling can work with AMP Theme Framework. #1520
* Content parsing login improved, so it will not through any warnings if the content has only 1 paragraph. #1523
* Debug Warnings removed #1564
* Caption in the Gallery creating validation errors Fixed. #1549
* Tables Link color should be as same as the link of the body #1559
* Separate options for In-Content related posts #1546
* WebPage Schema Type added in Structured Data options #1558
* Fatal Error fixed with `mb_detect_encoding()` after enabling the minify option #1494
* Content blank or fatal errors due to itemscope and itemtype, fixed. #1570
* Performance improved. Due to `_transient__redux_activation_redirect` transient. #1526
= 0.9.71 (1st December 2017) =
* Design 2 Post Titles issue fixed
* Instant Articles validation issue fixed.
= 0.9.70 (30th November 2017) =
* View More details on https://ampforwp.com/0-9-70-released-stability-update-76th-update/
* Image alt tags are empty which caused issues. #1154 (thanks to @liagua)
* ALT and IMG tags are in one line #1442
* Updated the permalink for post view in admin area #1318
* aria-current causing validation issues #1427
* Aligning Captions in the Bottom in Gallery #1428
* Logo’s height & width should dynamically come from the logo. This was a great UX improvement in my opinion. The logo would good regardless of the kind of image you upload. #1429
* After 0.9.69.1 update – Call to undefined function mb_convert_encoding #1447
* Featured image options now also reflect the structured data #1430
* Blur & Stretching issues of Design 3 thumbnails are now fixed. They’re crisp and clear than ever! #1227
* Related posts are showing on single even when turned off #1434
* Show Related posts CSS only when it is selected #1356
* Author image now displays on author pages #1426
* Category base removal in AMP from url option is only working on the first page #1418
* Bug fixed: PHP Warning DOMDocument Empty string supplied as input #1449
* Video support added in Instant Articles #1300
* Read more tag in Instant articles issue fixed #1415
* Amp carousel issues fixed #1446 #1456
* Compatibilty with Envira Gallery Lazy Loading #1432
* Inline Related Posts in AMP Theme Framework #1457
* Different number of in-content related post and related posts at the footer #1448
* FooGallery update broke all the AMP compatibility, but we fixed it from our side so that user’s gallery work perfectly #1424
* WPBakery Page Builder Conflict solved #1419
* Goodlife theme Lazy Load compatibility added #1416
* AMP-Facebook-Like Was found but unused Validation Error fixed. #1463
* Playbuzz not displaying if added with https: #1466
* Options Panel labels renamed for better understanding.
= 0.9.69 (20th November 2017) =
* View More details on https://ampforwp.com/0-9-69-released-stability-update-75th-update/
* One Signal Push Notifications bug fixed! #1404
* AMP theme framework Related posts extended so that it can be used as a loop format #1406
* Facebook like Button improvements #1405
* Add layout responsive tag to image module in page builder #1373
* Strip the shortcodes from Structure data area #1389
* Test HTTP API Call From admin panel by redux #1391
* Meta description tag in normal site Unicode character is different from AMP site unicode character. #1369
* Updated the check for ampforwp_is_amp_endpoint this should fix the issue #1372
* Updated the URL for design 3 so it can work with plain permalink #1318
* Updated the option Featured Image from The Content #1367
* If “Featured Image From The Content is enabled and Duplicate Featured Image” is disable it will remove all the duplicate images from the content. #1375
* Date Format under Homepage improvements #1408
* Warnings due to inline related posts in Homepage #1413
* Plain Permalinks Support improved. #1318
* Allow Homepage title of Bread Crumbs feature to be changed from Translation Panel #1414
* Debug Errors in AMP Theme Framework #1403
* Unnecessary loading of Merriweather fixed, it will only load in the Design 1.
* Enter Phone Number is not Appearing when switch to Call now button #1425
* Need excerpt below the title, above the meta #1399
* Remove the Separator piple symbol from the footer when “Back to Top link” is off #1417
* Display Child or subcategories on Category pages. #1385
* Add Caption in the Gallery Image feature conflicting with Gallery widget #1407
* Youtube Shortcode embed with &rel=0 support #1378
* Filter for Excerpt custom text in the AMP options #1411
* WPML Multilingual CMS plugin flags compatibility #1270
* Compatibility with Tasty Recipes plugin and other page builders with amp page builder #1431
= 0.9.68 (12th November 2017) =
* View More details on https://ampforwp.com/0-9-68-released-stability-update-74th-update/
* ADs are Optimize For Viewability, meaning it will try to load faster than the original AMP AD loading strategy.
* Content was disappearing issue was resolved #1392
* Featured Image from The Content option is connected to related post #1339
* Fix amp-web-push helper iframe configuration URL #1387
* Facebook Like button added to AMP #1327
* WPML support for AMP Improvement #1285
* Debug Errors fixed #1366
* Setting ad density for Facebook Instant Articles ads #1287
* Showing the number of comments in Single #1341
* Styling added to the sitewide ads and made sure that they are in the center. #1343
* One Signal buttons Translation added #1383
* Article type added to Structured data #1344 #1354
* The issue with the amp-carousel when RTL was enabled #1358
* amp-carousel with images of different sizes #1358
* a bug where Img is getting converted to amp-img if there's no height or width. which causing validation issue and image is not visible fixed.
* Instant Article should have a default value for number of posts, it was causing the memory issue with alot of posts #1390
* Notice if a post has no author data #1338
* Added a new redux extension select field in redux framework #1349
* Issues with galleries as well as gallery captions #1363
* Added a hook for adding anything in between the loops #1396
* Hide meta boxes as per the user level types #1340
* A Switch between the Date formats #1384
* Fix: Jannah theme lazy load issue #1362
* Issues with galleries as well as gallery captions #1363
* Create Dynamic url of amp according to the permalink structure #1318
* Minor code performance improvement.
* Archive titles in Design 3 frontend issue
= 0.9.67.0 (6th November 2017) =
* View more details on https://ampforwp.com/one-signal-push-notifications-for-amp/
* OneSignal Push Notifications integrated #807
* Vimeo embed support added
* SoundCloud embed support added
* Pinterest embed support added
* PlayBuzz embed support added
* DailyMotion embed support added
* Fix: Handle issues with data uri images in CSS #1033
* Fix attribute when adding AMP Mustache lib #1033
* Fix: Output CSS for feature image #1033
* An option added for users who don't want to receive update notifications #1342
* Structured data nav improvement
* Sitenavigationelement has been implemented correctly for footer menu. #1345
* Style sanitization for Menu Items #1359
* Polylang flags support for menu #1360
* Mobile Redirection issues fixed #1173
* Jetpack fatal error fixed #1355
* AMP Page Builder requires a button to be clicked, so the scripts are not running on the runtime making it easy on the edit screen page and avoid the possible script conflict.
* Needs proper CTA Bar's styling. #1361
* Debug errors on archive pages #1353
* Preview shall only be loaded on click rather than in background #1331
* ampforwp_is_home() function code improved
* making sure scripts and styling is properly adding when sanitizing the sidebar #868
* All the backend css and js should be versioned, so it's not cached. #1335
= 0.9.66.1 (30th October 2017) =
* Fatal error if has version less than WP 4.8 fixed
* More Minor Validation errors fixed
* Odnoklassniki sharing button is not working #1337
= 0.9.66.0 (29th October 2017) =
* View more details on https://ampforwp.com/0-9-66-released-bug-squashing-oct-2017-72nd-update/
* Design 3 & Design 1 are optimised with 90+ Google PageSpeed Score on Mobile and 95+ in desktop performance #1273
* Featured Image from the content for blog and homepage #1295
* Category Module for AMP Page builder added #888
* Don't load unused CSS selectors. All the CSS is conditionally loading, to decrease the number of CSS loaded per page and increased in performance #1292
* Twitter Video embed code support added in AMP #1307
* Video Posting Structured data #1293
* Navigation menus are now Schema compatible for better Structured data integration #1229
* Yoast checking conditions for Structured Data Improved #1293
* Added "back to Top" in design 3 #959
* Proper blog check and author for custom frontpage #1260 (Made some changes to check the blog properly and also added the author details for Custom Frontpage)
* AMP not working on password-protected pages #1192
* Debug errors reported by the user #1284 and few more we found internally
* Inline Style Sanitizer for Comments to avoid any validation issues #1193
* Next/Previous links removed from pages #1268 props @Frenchomatic
* WPML Multilingual CMS plugin flags compatibility added #1270
* Image sanitizer added for the Sidebar #1270
* Added AMP Components the correct way. Added amp-gist, amp-social-share. #336
* amp-video script added - Which decreases the non-critical validation issues #991
* Arrows in Design 3 pagination #1000
* Author page links in Single #1282
* Added previous open state of option panel and show again when search clean #1238
* Odnoklassniki Social Sharing Support for AMP (with target blank for better bounce rate) #1230
* GIF or animated images resize problem fixed #1281
* In Design1, Header Background & Link Color have same option #1249
* FB Pixel for AMP added #1231
* Structured Data Type option for AMPed Custom Post types only #1259
* Attribute ‘readability in the tag ‘div’ removed - this decreases the validation issues #1306
* AMP Theme Framework Improvements: loop, author, related_post, Add Author support #1311
* Commentator's Avatar in the comments section #1132
* Remove 'Welcome to AMP' from Dashboard sub-menu and moved to the options area to decrease the annoyance and increase the user happiness #902
* Option to Sort the Random Order of Related Posts to increase the audience engagement (Default is 'ID', on enabling the option it will change to 'rand') #1250
* View AMP on Admin Bar for the respected page/post If enable. #1236
* google maps iframe – link to larger map #1099
* Comments now jumping due to the slash at the end #1309
* Page Builder causes Incompatibility with the Divi theme (We restructured the Text Module for Page builder for better compatibility and UX) #1162
* Inline Style Sanitizer for Comments added. Less Critical Validation issues and Better Presentation #1193
* WPML amp-html error fixed #1285
* Radio button not working for Show View more Button" #1018
* Added registered handle for tinymcePointer localize data #1301
* Date in the Design 2 should not be hidden in mobile version #1315
* Page builder not working on homepage(Selected as front page) #1316
* Instant articles number of posts option #1271 (Removed some unused code as well, it will rendered all posts if none is enter in the options)
* Auto flush on save for FBIA to improve the UX.
* Plain Permalinks Support improved. #1318
* Tables support added to FB Instant Articles #1266
* Demo link added in the Theme selector option #1248
* Remove invalid attributes from multiple tags which reduces critical validation errors and validates pages.
* AMP makes a problem in archive page label, when it is active in non-amp version #1304
* placeholder-icon.png is 404 fixed #1310
* Category & Tags switches for Single added. #1055
* Copy Content (Custom AMP Editor) Option Not showing with Page Builder of SiteOrigin issue fixed #1280
* Improving UX with: when AMP support is off for a specific post type then all the AMP related metaboxes should be removed #1289
* Options Panel Options rearranged, labels rewritten, descriptions repositioned for better User interaction [commit]
= 0.9.65.2 (25th October 2017) =
* TypeWatch is not a function #1299
* Error with BackupBuddy fixed #1303
= 0.9.65.1 (24th October 2017) =
* AMP Minifcation Issues fixed
= 0.9.65 (22nd October 2017) =
* View more details on https://ampforwp.com/new/
* Favicon for AMP #1039
* AMP Minification option added with Performance Tab in Options #1286
* Post support is turned off then Meta box should also be removed #1253
* Excerpt Length feature in Design two and Three #1122
* Test Contact form plugins and their settings in the options panel #1121
* Mobile preview in Edit Screen #1082
* Search feature for Options Panel #1238
* WordPress Social Share Buttons Validation Issues #1272
* itemtype attribute is striping in the ul tag #1210
* Debug Error in Breadcrumb 0.9.64 #1267
* Disable AMP linking at Wordpress Search Page #969
* Featured Image is missing #1071
* Removed ampforwp_plugin_activation_notice #1034
* Add VK (Vkontakte) Sharing Button #1187
* Grab the first image instead of post thumbnail for featured image #1189
* AMP theme framework core changes #1274
* Grab the first image instead of post thumbnail for featured image #1189
* Create a Switch on Top of Page Builder #1279
* Inline Related Posts added that helps you with improving bounce rate #1078
* Caption Support in Image Gallery Carousel #1172 #1136
* Instant Articles feed shows sticky posts on top #945
* Added search check, to fix debug notice
* Option to hide date from Design 1 & Design 3 Homepage Loop #1264
* UI labels improvements in the Options panel
* Sorting out design #2 – static front page #1175
= 0.9.64 (15th October 2017) =
* View more details on https://ampforwp.com/new/
* Structured Data Type option added. You can now change the structured data format for Posts, Pages and Custom post types #323
* When comments plugin activate, Comments section should remove. #1093
* Notification causes a validation error. #1147
* CSS !important need sanitization #1225 - This will help us to validate tens of thousands of pages.
* Strange spaces when using Sassy Social Share #1185
* Remote CDN use? Let's host it? #549
* Typo fix for Linkedin Profile Page URL section #905 [Thanks to Prayag @pra85]
* Replace fastimage with fasterimage for PHP 5.4+ #1191
* Debug Errors Post 0.9.63 #1219
* Ad5 code injected twice #1116
* Homepage Support must be Off when we turn Off Homepage Support. #738
* Add custom class in post pagination for styling #1100
* Removed the Lazy Loading issue of Schema Theme #1170
* H1 tag for archive titles (Commit) #1155
* Alt tag for the Logo #1155
* Design 3 Menu RTL issue fixed #1106
* Ability to add dynamic classes in body tag #1237
* Warnings fixed on 404 page #1243
* Properly structured data for Homepage, Custom Frontpage and Blog #1155 #1242
* Option added to Enable/Disable categories and Tags links from Single #1155
* Fatal error after 0.9.63 fixed #1220
* Debug Error due to vendor AMP #1213
* PHP warning on line 147 after 0.9.63 #1241
= 0.9.63 (8th October 2017) =
* View more details on https://ampforwp.com/new/
* Category and Tag Base Remover as core features #1079
* Hide AMP on Posts option added #935
* Installation Setup Screen Added for new users
* Validation for the session in PHP #1158. PR by Bryan Contreras @bryan3561
* All the amp pages should work perfect with Plain Permalink settings #488
* WYSIWYG TinyMCE editor added for the Text Module in AMP Page Builder #1205
* WPML Static Front Page Support for title and description with Yoast. #1143
* Row Settings area added for AMP Page Builder #1148
* xlink attribute causes Validation Issues #1149
* Posts with no images on Archive pages are squeezed to 65% #1058
* Body Class to target specific pages #1123
* Option to enable/disable Breadcrumb #1129
* Debug errors due to Breadcrumbs fixed #1109 #1130 #966
* Visit AMP option added below the View Site in Dashboard. #1076
* Many Debug errors fixed #1109
* Textarea for body tag which will help people add AMP Auto Ads #1064
* Structured data improvements #1048 #1044 #1085 #1118
* Twitter share URL based on users choice, you can allow people to share pretty links and short links. #1097
* Author Avatar removed code fixed which has been displayed in the div "amp-wp-meta amp-wp-byline". #1087
* Only one figure element is allowed in the article header FB Instant Articles #1127 & #1157
* Image alt tags are empty and cause issues fixed. #1154
* Button to copy the content into Custom AMP Editor #783
* Rename AMP loop widget areas or add proper descriptions #1045
* Trailing slash issue #1095
* Related Posts by Post type featured added #1141
* Ultimate Social Media Icons plugin causes validation issues fixed #1135
* Adding proper path for functions.php, it was causing strange fatal errors and irregular white screen of death fixed #1144