-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathreadme.txt
1692 lines (1403 loc) · 124 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
=== Toolbar Extras for Elementor & More - WordPress Admin Bar Enhanced ===
Contributors: daveshine, deckerweb, wpautobahn, toolbarextras
Donate link: https://www.paypal.me/deckerweb
Tags: toolbar, admin bar, elementor, page builder, gutenberg, adminbar, themes, menu, links, settings, usability, deckerweb, ddwtoolbar
Requires at least: 4.7
Tested up to: 5.3
Requires PHP: 5.6
Stable tag: 1.4.9
License: GPL-2.0-or-later
License URI: https://opensource.org/licenses/GPL-2.0
Building sites with Elementor & more? Your work will get easier & faster with Toolbar Extras. With extended plugin & theme support baked right in.
== Description ==
🚀 Quick Access to Your Site Building Resources - Big Time Saver. Perfect for Non-Techies and Non-Coder Designers.
This smart WordPress plugin just adds some missed and **very useful admin links** to your Toolbar / Admin Bar. Save scrolling and time. Access settings and content pages faster from one central area in the Admin Dashboard AND when on the frontend of your site.
https://www.youtube.com/watch?v=VB4DcqfYqY4
Out of the box the plugin includes support for **hundreds** of awesome **third-party Plugins** and **Themes**. Create Elementor templates right from the Toolbar, jump to *Granular Controls* settings or **with one click** you are on the **Plugin Installer page** to upload a new Elementor premium Add-On. Yes, it's **so easy and fast**.
Or customize any Theme settings of *Astra* theme via **Customizer Deep links** right at your fingertips - in the Toolbar. An **optimized workflow** to **save you precious time**. I released this plugin to the public to **speed up your site building process** even more - as the plugin already helps myself for a long, long time.
= ♥️ Features - What the Plugin Does =
* Adds Page Builder links: Elementor & Elementor Pro - for example just add a new Elementor Template from the Toolbar, where Elementor builder loads right away and you begin building, yeah! 😁
* Adds links for Elementor Add-On Plugins
* Adds links for Elementor-friendly Themes, that also Support Elementor Theme Builder (Pro Version 2.0+)
* Adds links for general, very useful Plugins (for Site Builders/ Designers/ Developers)
* Enhances "New Content" section (under "+ New") with more links - for content types, as well as Plugin & Theme installs
* Adds new groups & links to "Site" section (under your Website Title in Toolbar)
* Enhances the WP Comments section (bubble icon)
* Automatic detection of Local Development Environment - to better differentiate your development and live sites (works best with the App "Local by Flywheel" and a `.local` domain)
* Adds support for creating an "internal" new Menu for Admins which hooks into the Toolbar - using the regular WordPress nav menu system! (Menu location is: "Site Toolbar Menu")
* Adds useful external resource links to most of the above mentioned sections (could be disabled, of course!)
* A few smart tweaks to change some behavior of WordPress as well as some plugins - all regarding the Toolbar - for example tweak the Howdy/Welcome item at the top right
* Some links/ tools aimed more for developers and local development (disabled by default, though)
* Adds plugin settings page (under "Settings > Toolbar Extras") so you have control over what is displayed and what's not!
* Any code is only loaded if needed - Example: if a supported plugin is not active, the links for it won't even be loaded code-wise!
* Non-Techie and Non-Coder Designer friendly 🎉
* Clean and efficient code
* Developer friendly - offering quite a few action hooks and filters for customization if needed
* Fully internationalized and translatable - also tested/optimized for RTL languages
* [▶️ **Video feature tour throughout the plugin**](https://www.youtube.com/watch?v=gu9Z5gW9vq0)
* [▶️ **Video live demos, tutorials, Add-Ons and more**](https://toolbarextras.com/videos/)
= 👍 Elementor & Elementor Pro Support =
* Adds lots of Elementor **Quick Jump Links** to the Toolbar
* Perfect for **all Elementor users**!
* **Elementor** (free) version 2.x (and also former 1.x)
* **Elementor Pro** (Premium) version 2.x (and also former 1.x) - Theme Builder and Popup Builder
* **1-Click Template Creation**: Start the Live Editor and create a new template (or page, post, custom post type) at the same time, with only **one** click - so easy!
* **Elementor Finder** feature integration - Elementor external resources links, plus settings & support for Toolbar Extras itself
* **Elementor Debugger** supported - optionally re-hook from top-level into Build Group
* **Elementor actions** - *regenerate CSS* (clear cache) and *re-synching the external library*
= 🎨 Supported Themes/ Frameworks =
* [**Astra**](https://wordpress.org/themes/astra/), including **Astra Pro** (Add-On) (both by Brainstorm Force) - [see Astra ecosystem support listing page](https://toolbarextras.com/theme-support/astra/)
* [**GeneratePress**](https://wordpress.org/themes/generatepress/), including **GeneratePress Premium** (Add-On) (both by Tom Usborne) - [see GeneratePress ecosystem support listing page](https://toolbarextras.com/theme-support/generatepress/)
* [**OceanWP**](https://wordpress.org/themes/oceanwp/), including Suite of Premium Extras (Add-Ons) - [see OceanWP ecosystem support listing page](https://toolbarextras.com/theme-support/oceanwp/)
* [**Genesis Framework** (Premium, by StudioPress)](https://toolbarextras.com/go/genesis/) - [see Genesis ecosystem support listing page](https://toolbarextras.com/theme-support/genesis/)
* [**Page Builder Framework**](https://wordpress.org/themes/page-builder-framework/), including their **Premium Add-On plugin** (both by David Vongries & MapSteps)
* [**Customify** (free, by WPCustomify/ PressMaximum)](https://wordpress.org/themes/customify/), including **Customify Pro** (Add-On)
* [**Suki** (free, by SukiWP/ David Rozando)](https://wordpress.org/themes/suki/), including **Suki Pro** (Add-On)
* [**Neve** (free, by ThemeIsle)](https://wordpress.org/themes/neve/), including **Neve Pro** (Add-On)
* **Suite of "Twenty 20.." default themes**, like [*Twenty Twenty*](https://wordpress.org/themes/twentytwenty/), [*Twenty Nineteen*](https://wordpress.org/themes/twentynineteen/) and [*Twenty Seventeen*](https://wordpress.org/themes/twentyseventeen/)
* [**Hello Elementor Theme** (free, by Elementor Team/ Elementor Ltd.)](https://wordpress.org/themes/hello-elementor/), an official, simple starter theme for developers
* **Layers for Elementor** (free, by Elementor Team/ Elementor Ltd.), an official Elementor-friendly Theme
* **Freelancer Framework** (free, by Cobalt Apps)
* **Dynamik Website Builder (Child Theme for Genesis)** (Premium, by Cobalt Apps)
* **Beaver Builder Theme** (Premium, by FastLine Media LLC)
* [**Hestia**](https://wordpress.org/themes/hestia/), including its Child Themes "Orfeo", "Tiny Hestia", "Christmas Hestia" (all by Themeisle)
* [**Sydney** (free, by athemes)](https://wordpress.org/themes/sydney/)
* [**Phlox** (free, by averta)](https://wordpress.org/themes/phlox/) - including the free Add-Ons "Phlox Core Elements" and "Phlox Portfolio"
* [**Futurio** (free, by FuturioWP)](https://wordpress.org/themes/futurio/), including **Futurio Pro** (Add-On)
* [**Woostify** (free, by BoostifyThemes)](https://wordpress.org/themes/woostify/), including **Woostify Pro** (Add-On)
* [**Zita** (free, by WpZita team)](https://wordpress.org/themes/zita/), including **Zita Pro** (Add-On)
* **Rife Free & Rife Pro** (free/Premium, by Apollo13Themes)
* **Sane** (free) and **Sane Pro** (Premium) (both by Elegant Marketplace)
* [**Kava Theme** (free & Premium, by Zemez Jet & Crocoblock)](https://toolbarextras.com/go/crocoblock/) - including all Jet Plugins
* [**StartWP**](https://wordpress.org/themes/start/), including their **StartWP Extended Add-On plugin** (both free and by Munir Kamal)
* [**Flexia** (free)](https://wordpress.org/themes/flexia/) - including Flexia Core (free) and Flexia Pro (Premium) plugins (all three by WPDeveloper)
* [**Storefront** (free, by Automattic, Inc.)](https://wordpress.org/themes/storefront/), including 13 Add-On plugins
* [**Buildwall** (Premium, by Zemez Jet)](https://toolbarextras.com/go/buildwall-tm/)
* **All church-specific themes by ChurchThemes.com** (Premium)
* [**Visual Composer Starter** (free, by The Visual Composer Team)](https://wordpress.org/themes/visual-composer-starter/)
* *(Support for a even more great Themes is added step by step...!)*
👉 [See full Theme support listing on plugin's website](https://toolbarextras.com/theme-support/)
= 👍 Support for Elementor specific Add-On Plugins =
* [**Header Footer for Elementor** (free, by Brainstorm Force)](https://wordpress.org/plugins/header-footer-elementor/)
* **Elementor Extras** (Premium, by Namogo)
* **Ultimate Addons for Elementor** (Premium, by Brainstorm Force)
* **PowerPack Elements** (free/Premium, by IdeaBox Creations)
* [**AnyWhere Elementor** (free, by WebTechStreet)](https://wordpress.org/plugins/anywhere-elementor/)
* **AnyWhere Elementor Pro** (Premium, by WebTechStreet)
* [**StylePress for Elementor** (free, by David Baker (dtbaker))](https://wordpress.org/plugins/full-site-builder-for-elementor/)
* [**Templementor - Persistent Elementor Templates** (free, by Lcweb)](https://wordpress.org/plugins/templementor/)
* [**Envato Elements – Template Kits** (free, by Envato)](https://wordpress.org/plugins/envato-elements/)
* [**Livemesh Addons for Elementor** (free, by Livemesh)](https://wordpress.org/plugins/addons-for-elementor/)
* **Livemesh Addons for Elementor Premium** (Premium, by Livemesh)
* [**Essential Addons for Elementor Lite** (free, by WPDeveloper)](https://wordpress.org/plugins/essential-addons-for-elementor-lite/)
* **Essential Addons for Elementor Pro** (Premium, by WPDeveloper)
* **Element Pack for Elementor** (Premium, by BdThemes)
* [**Premium Addons for Elementor** (free, by Leap13)](https://wordpress.org/plugins/premium-addons-for-elementor/)
* [**Elements Plus!** (free, by The CSSIgniter Team)](https://wordpress.org/plugins/elements-plus/)
* [**Debug Elementor** (free, by Rami Yushuvaev)](https://wordpress.org/plugins/debug-elementor/)
* [**Elementor Contact Form DB** (free, by Sean Barton)](https://www.sean-barton.co.uk/2017/04/elementor-contact-form-db-free-plugin/)
* [**Lenix Elementor Leads addon** (free, by Lenix)](https://wordpress.org/plugins/lenix-elementor-leads-addon/)
* [**Suite of "Jet Plugins"** by Zemez Jet/ Crocoblock (all Premium)], including *JetElements*, *JetWooBuilder*, *JetEngine*, *JetThemeCore* and more
* [**Elementor Custom Skin** (free, by Liviu Duda)](https://wordpress.org/plugins/ele-custom-skin/)
* [**Extra Privacy for Elementor** (free, by Marian Heddesheimer)](https://wordpress.org/plugins/extra-privacy-for-elementor/)
* [**White Label Branding for Elementor** (Premium, by IdeaBox Creations)] - including Toolbar Extras support for some of the white label features (where applicable)
* [**Dashboard Welcome for Elementor** (free, by IdeaBox Creations)](https://wordpress.org/plugins/dashboard-welcome-for-elementor/)
* **DHWC Elementor** (Product Templates for WooCommerce) (Premium, by Sitesao Team)
* [**Revolution for Elementor** (free, by Jan Thielemann)](https://wordpress.org/plugins/revolution-for-elementor/)
* **Revolution for Elementor Premium** (Premium, by Jan Thielemann)
* [**Portfolio for Elementor** (free, by WpPug)](https://wordpress.org/plugins/portfolio-elementor/)
* [**PT Elementor Addons Lite** (free, by ParamThemes)](https://wordpress.org/plugins/pt-elementor-addons-lite/)
* [**Elementor Addon Elements** (free, by WebTechStreet)](https://wordpress.org/plugins/addon-elements-for-elementor-page-builder/)
* [**Elementor Addons & Templates – Sizzify Lite** (free, by Themeisle)](https://wordpress.org/plugins/elementor-addon-widgets/)
* [**Granular Controls for Elementor** (free, by Zulfikar Nore)](https://wordpress.org/plugins/granular-controls-for-elementor/)
* [**PopBoxes for Elementor** (free, by Zulfikar Nore)](https://wordpress.org/plugins/modal-for-elementor/)
* [**Custom Icons for Elementor** (free, by Michael Bourne)](https://wordpress.org/plugins/custom-icons-for-elementor/)
* *(Support for even more Elementor Add-Ons is added step by step...)*
👉 [See full Elementor Add-On support listing on plugin's website](https://toolbarextras.com/elementor-addons-support/)
= 🔌 Support for more useful Plugins for Site-Builders =
* [**Central Color Palette** (free, by Gáravo)](https://wordpress.org/plugins/kt-tinymce-color-grid/)
* [**Simple CSS** (free, by Tom Usborne)](https://wordpress.org/plugins/simple-css/)
* [**Code Snippets** (free, by Shea Bunge)](https://wordpress.org/plugins/code-snippets/)
* [**Simple Custom CSS and JS** (free/Pro, by Diana Burduja)](https://wordpress.org/plugins/custom-css-js/)
* [**Customizer Export Import** (free, by The Beaver Builder Team)](https://wordpress.org/plugins/customizer-export-import/)
* [**One Click Demo Import** (free, by ProteusThemes)](https://wordpress.org/plugins/one-click-demo-import/)
* [**404page** (free, by Peter Raschendorfer)](https://wordpress.org/plugins/404page/)
* [**Add From Server** (free, by Dion Hulse)](https://wordpress.org/plugins/add-from-server/)
* **Gravity Forms** (Premium, by Rocketgenius, Inc.) (Smart Integration & Smart Tweaks)
* All major visual **form builders** beyond Gravity Forms: WPForms (Lite & Pro), Formidable Forms (Lite & Pro), Ninja Forms, Caldera Forms, Contact Form 7 (CF7), Everest Forms, HappyForms (free & Pro), weForms (free & Pro), Form Maker, Forminator, Advanced Forms (via ACF Pro), Fluent Forms (free & Pro), Flo Forms, HTML Forms, Torro Forms, BuddyForms, QuForm 2, ARForms, FormCraft 3 😀
* [**Popup Maker** (free, by Daniel Iser)](https://wordpress.org/plugins/popup-maker/) (requires v1.7+)
* [**Smart Slider 3** (free/Premium, by Nextend)](https://wordpress.org/plugins/smart-slider-3/)
* **Themer Pro** (Premium, by Cobalt Apps)
* **Extender Pro** (Premium, by Cobalt Apps)
* **Freelancer DevKit** (Premium, by Cobalt Apps)
* [**IconPress Lite/Pro** (free/Premium, by IconPress Team)](https://wordpress.org/plugins/iconpress-lite/)
* [**Advanced Custom Fields (ACF)** (free, by Elliot Condon)](https://wordpress.org/plugins/advanced-custom-fields/)
* **Advanced Custom Fields Pro (ACF Pro)** (Pro, Elliot Condon)
* [**Pods** (free, by Pods Framework Team)](https://wordpress.org/plugins/pods/)
* [**Meta Box** (free, by MetaBox.io)](https://wordpress.org/plugins/meta-box/) + Add-Ons
* **Instant IDE** (Premium, by Cobalt Apps)
* [**All-in-one Migration** (free, by ServMask)](https://wordpress.org/plugins/all-in-one-wp-migration/)
* [**UpdraftPlus** (free, by UpdraftPlus.Com, DavidAnderson)](https://wordpress.org/plugins/updraftplus/)
* [**Duplicator** (free, by Snap Creek)](https://wordpress.org/plugins/duplicator/)
* [**BackWPup** (free, by Inpsyde GmbH)](https://wordpress.org/plugins/backwpup/)
* [**WPvivid Backup Plugin** (free, by WPvivid Team)](https://wordpress.org/plugins/wpvivid-backuprestore/)
* Lots of Genesis-specific plugins as well 👏
* Lots of Email Marketing plugins like OptinMonster, Convert Plus, Convert Pro, Hustle, Bloom, Mailster, MailPoet 3, MailPoet Legacy
* Lots of SEO specific plugins like Yoast SEO (free & Premium), SEOPress (free & Premium), The SEO Framework, All In One SEO Pack
* Suite of "Cherry Plugins" by Zemez (all free), that work well with Elementor (Projects, Service Lists, Team Members, Testimonials)
* Integrated with over 62 (and growing!) plugins specific for the Block Editor (Gutenberg)
* *(Support for more general Plugins is added step by step...)*
👉 [See full general Plugins support listing on plugin's website](https://toolbarextras.com/plugin-support/)
👉 [See full Gutenberg Block Editor Add-On plugins support listing on plugin's website](https://toolbarextras.com/gutenberg-block-editor-support/)
= 🔌 Support & Compatibility for more plugins =
Toolbar Extras supports even more plugins as listed here. Also, the plugin was tested with a lot of other plugins adding stuff to the Toolbar - and all works very well. We try to be not in the way of other plugins but rather work well together. This being said, Toolbar Extras even allows you to tweak the (Toolbar) behavior of a few selected plugins. This is really cool to save space in this bar and make the appearance overall a lot cleaner.
For full list of [supported plugins](https://toolbarextras.com/plugin-support/) and [third-party plugin compatibility](https://toolbarextras.com/docs/plugin-compatibility/) just **[visit our website at https://toolbarextras.com/features/](https://toolbarextras.com/features/)**
= ▶️ Official Add-Ons for Toolbar Extras =
*These Add-Ons are also developed and built by myself (David Decker) and bring the awesomeness of Toolbar Extras to other page builders and other great plugins & areas in WordPress. Check them out for yourself:*
[👉 **Toolbar Extras for Oxygen Builder**](https://wordpress.org/plugins/toolbar-extras-oxygen/)
Integrates the awesome Oxygen Builder into the Toolbar - for faster access to templates, settings and resources. Build Oxygen sites even faster. - [Get this Add-On now](https://wordpress.org/plugins/toolbar-extras-oxygen/)
[👉 **Toolbar Extras for MainWP Dashboard**](https://wordpress.org/plugins/toolbar-extras-mainwp/)
Manage your websites faster with MainWP Dashboard and your Toolbar. Get more productive and benefit from a better user experience. - [Get this Add-On now](https://wordpress.org/plugins/toolbar-extras-mainwp/)
[👉 **Toolbar Extras for Give Donations (GiveWP)**](https://wordpress.org/plugins/toolbar-extras-givewp/)
Collect and manage donations faster with GiveWP and the Toolbar. Get more focussed on your fundraising missions and save time. - [Get this Add-On now](https://wordpress.org/plugins/toolbar-extras-givewp/)
= ℹ️ Important: Required/ Recommended for plugin usage =
* Required: User has role `Administrator` (needed capabilities `manage_options` and `edit_theme_options`)
* Required: Toolbar/ Admin Bar is enabled (user profile settings in WordPress)
* Required: User is logged in (of course)
* Recommended: Plugin's settings are enabled to show the wanted links (or any filter/ constant in code)
* Recommended: Elementor Page Builder is installed & activated - Toolbar Extras plugin integrates fully with Elementor (Pro included) and is optimized for it
= 🌎 Translations =
* 🇺🇸 English (United States) - `en_US` = default, always included
* 🇩🇪 [German (informal, default)](https://translate.wordpress.org/locale/de/default/wp-plugins/toolbar-extras) - `de_DE`
* 🇩🇪 [German (formal)](https://translate.wordpress.org/locale/de/formal/wp-plugins/toolbar-extras) - `de_DE_formal`
* 🇨🇦 [English (Canada)](https://translate.wordpress.org/locale/en-ca/default/wp-plugins/toolbar-extras) - `en_CA`
* 🇬🇧 [English (UK - United Kingdom)](https://translate.wordpress.org/locale/en-gb/default/wp-plugins/toolbar-extras) - `en_GB`
* 🇳🇿 [English (New Zealand)](https://translate.wordpress.org/locale/en-nz/default/wp-plugins/toolbar-extras) - `en_NZ`
* 🇦🇺 [English (Australia)](https://translate.wordpress.org/locale/en-au/default/wp-plugins/toolbar-extras) - `en_AU`
* `.pot` file (`toolbar-extras.pot`) for translators is always included in the plugin's 'languages' folder
= 😎 Be a Contributor =
If you want to translate, [go to the Translation Portal at translate.wordpress.org](https://translate.wordpress.org/projects/wp-plugins/toolbar-extras).
You can also contribute code-wise via our [Toolbar Extras GitHub Repository](https://github.com/deckerweb/toolbar-extras) - and see where you can help.
= 📝 Documentation and Support =
* For more information about features, FAQs and documentation, check out our website at [Toolbar Extras Plugin](https://toolbarextras.com/).
* If you have any more questions, visit our support on the [Plugin's Forum](https://wordpress.org/support/plugin/toolbar-extras).
* An overview about the ongoing development you'll find on our [Trello Board for the Plugin's Roadmap](https://trello.com/b/JrpjwlX4/toolbar-extras-public-roadmap)
= ⚡ Liked Toolbar Extras Plugin? =
* Join our [Facebook Community Group 💬](https://www.facebook.com/groups/ToolbarExtras/)
* **Rate us 5 ⭐ stars** on [WordPress.org](https://wordpress.org/support/plugin/toolbar-extras/reviews/?filter=5/#new-post)
* [**Subscribe to my Newsletter for insider info on this plugin** 💯](https://eepurl.com/gbAUUn), plus tutorials and more stuff on deckerweb WordPress plugins - join a thriving community of site builders!
* [**Become a Patron** 💜](https://www.patreon.com/deckerweb) and support ongoing development, maintenance and support of this plugin
* [**Follow us on Instagram** 📷](https://www.instagram.com/toolbarextras) and like our content
* Follow us on Twitter 🐦: [@ToolbarExtras](https://twitter.com/toolbarextras) and [@deckerweb](https://twitter.com/deckerweb)
= ☕ This Plugin ... =
* ... scratches my own itch!
* ... is *Quality Made in Germany*
* ... was created with love (plus some coffee) 😎 - [if you like it consider donating](https://www.paypal.me/deckerweb)
== Installation ==
= Minimum Requirements =
* WordPress version 4.7 or higher / alternatively also working with ClassicPress 1.x
* PHP version 5.6.20 or higher
* MySQL version 5.0 or higher
* Administrator user with capabilities `manage_options` and `edit_theme_options` who is logged-in and has the Toolbar (Admin Bar) enabled (user profile)
= We Recommend Your Host Supports at least: =
* PHP version 7.2 or higher
* MySQL version 5.6 or higher / OR MariaDB 10.1 or higher
* HTTPS support
= Installation =
1. Install using the WordPress built-in Plugin installer (via **Plugins > Add New** - search for `toolbar extras`), or extract the ZIP file and drop the contents in the `wp-content/plugins/` directory of your WordPress installation.
2. Activate the plugin through the 'Plugins' menu in WordPress.
3. Go to **Settings > Toolbar Extras** to adjust any options for this plugin
4. Go to **Appearance > Menus** to add & edit an optional Toolbar Menu (for Admins only).
5. Now enjoy building your site - and let the Toolbar work for you 😊
For documentation and tutorials visit our [Knowledge Base](https://toolbarextras.com/docs/).
== Frequently Asked Questions ==
= Why another Toolbar plugin, there are already some others!? =
You're right! If you're happy with one of the others then that's absolutely great and you don't need to add or switch anything! I just made this new plugin here for my very own needs. Since I love to give back to the Community and as some kind of an open source evangelist I like to release my stuff to the public - for free!
When I setup a new WordPress site I want to activate Toolbar Extras and instantly have my needed "Tools" (favorite plugins, themes) available as quick jump links from a central place at the top - the WordPress Toolbar, aka Admin Bar. So I can start my work and focus on building stuff rather than search for settings pages here and here and wasting time with senseless scrolling...!
Plugin developer David Decker: *What has proved its day to day usage and usefulness on more than 100 installs before, could be used by many other site builders as well, right? 😊*
= Why is the Administrator Role required? =
This plugin only works and makes sense for Administrator users (and Super Admins in Multisite) just because the links it adds to the Toolbar normally do require those permissions for the original supported plugins and themes.
Example: The Elementor settings page requires the capability `manage_options` - by default, only Administrators have this capability. So Toolbar Extras "inherits" those capabilities (permissions) as well.
So, to see anything added to the Toolbar, it is required the user must have the capabilities of `manage_options` and `edit_theme_options`. As long as these are in place, Toolbar Extras is the perfect companion! 👍
(Note: Implementing other roles/ capabilities is not planned, and it makes no sense, really. It would require the codebase to be bloated with all those additional permission conditions and would give only very very few (if any at all!) additional links for roles like "Editor" or lower. Again, offering all items only for Admins follows the supported integrations, prevents bloat and big footprint while also avoiding very high maintenance costs.)
= Is Elementor required for this plugin? =
Technically Elementor is not required. However, without Elementor being activated this plugin (Toolbar Extras) doesn't make much sense. Of course, the plugin supports deactivation of Elementor, though (for development, testing, whatever). When you do that (maybe for testing something) nothing strange will happen; I've included a fallback. Toolbar Extras acts smart 😎
I totally [recommend Elementor](https://toolbarextras.com/go/elementor/) - so, with it active, this plugin here will make the perfect sense!
= Is Elementor Pro required for this plugin? =
Absolutely not. The supported links in Toolbar Extras will only be displayed once Elementor Pro is active.
However, I [strongly recommend Elementor Pro](https://toolbarextras.com/go/elementor-pro/) as it is so useful for Non-Coder Designers site builders.
= Is a Page Builder required at all for this Plugin to work? =
**Absolutely not.** The Toolbar Extras plugin has a lot of features for the Admin Bar that are fully independent from any Page Builder at all. So, of course, you can use it even if you have no Page Builder in use, or even none of the other supported plugins or themes activated. Toolbar Extras only loads features for third-party products if those are installed and activated and otherwise goes gracefully out of the way.
= Will other Page Builders be supported, beyond Elementor? =
In general: This is planned middle to long-term. Nothing is set in stone yet.
For "Beaver Builder", "Thrive Architect" and "Brizy" there are plans to release an Add-On for each one but no features or date is being set yet.
(Note: For a Page Builder to be considered for adding support it must be working without Shortcodes, as those Shortcode-based Builders will obviously have no bright future...!)
= Where can I find which exact Themes and Plugins are supported? =
You can find full listings on the plugin's website:
* [All supported Themes, Child Themes and Frameworks](https://toolbarextras.com/theme-support/)
* [All supported Elementor Add-On Plugins](https://toolbarextras.com/elementor-addons-support/)
* [All supported general Plugins](https://toolbarextras.com/plugin-support/)
= Will other Themes be supported? =
Yes, absolutely. – In general the Theme support in Toolbar Extras is considered as essential. And, I will only ever add Themes that work well with Page Builders (mostly Elementor) and are well established. If you have recommendations you can contact me.
For reference, you can find the complete list of supported themes here: [Currently supported Themes/ Child Themes and Theme Frameworks](https://toolbarextras.com/theme-support/)
= Will other third-party Plugins be supported? =
Yes, absolutely. - Though, we won't support every plugin under the sun, of course. For support to be included, the plugin has to meet at least one - better all - of the following conditions:
* is useful for site-builders and/or developers
* enhances the supported Page Builder
* has own settings/ admin pages or own post types/ page with data input
* additionally it should have a good reputation and be just useful (yes, say that again!)
= Does the Plugin work with the new Block Editor (Gutenberg)? =
Yes, absolutely. Since the Toolbar has no direct connection to the editor anyways, it is fully compatible by default. But to go the extra mile, since its version 1.4.0 it supports special integration with Gutenberg and the optional "Classic Editor" and "Disable Gutenberg" plugins. Even the growing Add-On ecosystem for Block Editor/ Gutenberg is also be supported very well since v1.4.0. So, if you want to work with this new Editor (in Core since WordPress version 5.0) or not, Toolbar Extras gives you the best support and integrations for either alternative!
= Will this Plugin slow down my site? =
**Absolutely not.** The plugin will only do its stuff for logged-in Administrator users. It does nothing for visitors of your site. Plugin loads its stuff only when needed and if supported theme/ plugin is active. Plugin was built to be as lightweight as possible.
= Does the Plugin work with Multisite? =
Yes, it works fine in Multisite, you could even activate it Network-wide. However, it does add almost nothing additional to the Network Admin but rather to the Dashboard of each individual sub-site of the Network. Therefore I recommend to use "Toolbar Extras" only in single installs (default) currently.
For Multisite installs I currently recommend my own plugin **["Multisite Toolbar Additions"](https://wordpress.org/plugins/multisite-toolbar-additions/)** which is like a "sister plugin" of Toolbar Extras (and even was there before it!).
*Update I:* Toolbar Extras version 1.3.2+ made Multisite support a first-class citizen, including Multisite-aware plugins. That means, if you want to use Toolbar Extras in your Multisite install, then please activate it Network-wide (recommended!); or at least on the Main Site of the Network.
*Update II:* A special Multisite Add-On for Toolbar Extras is planned but no date is being set yet. This Add-On will bring many improvements to the Network Admin area as well as specific plugin support for Multisite.
= Can the plugin be used on WordPress.com? =
Normally not. But, when you are on the paid Business plan then installation of plugins is allowed for these account types. However, since WordPress.com replaces the original WordPress Toolbar with their "Masterbar" you first need to remove this via a code snippet. Then you can use plugins like Toolbar Extras.
See the full [tutorial on how to use Toolbar Extras on a WordPress.com Business account](https://toolbarextras.com/docs/how-to-use-toolbar-extras-plugin-on-wordpress-com/).
= More info on Translations? =
* English - default, always included
* German (de_DE): Deutsch - immer dabei! 👌
* For custom and update-safe language files please upload them to `/wp-content/languages/toolbar-extras/` (just create this folder) - This enables you to use fully custom translations that won't be overridden on plugin updates. Also, complete custom English wording is possible with that as well, just use a language file like `toolbar-extras-en_US.mo/.po` to achieve that (for creating one see the following tools).
**Easy WordPress.org plugin translation platform with GlotPress platform:** [**Translate "Toolbar Extras"...**](https://translate.wordpress.org/projects/wp-plugins/toolbar-extras)
*Note:* All my plugins are internationalized/ translatable by default. This is very important for all users worldwide. So please contribute your language to the plugin to make it even more useful. For translating and validating I recommend the awesome ["Poedit Editor"](https://www.poedit.net/), which works fine on Windows, macOS and Linux.
== Screenshots ==
1. Toolbar Extras - New "Build" Group with links to Page Builder (Elementor), the current active Theme, plus Add-Ons and Resources
2. Toolbar Extras - Build Group with current active Theme (Astra) - detailed Deep-Links into Customizer Sections etc.
3. Toolbar Extras - Build Group with links to Pro version of the Theme (Astra Pro Add-On), plus sub-links, resources
4. Toolbar Extras - Build Group - links for Elementor Add-Ons
5. Toolbar Extras - Extensive resources for the active Page Builder (Elementor) - Documentation, Community, even for Developers
6. Toolbar Extras - "Local Development Environment" - use the Toolbar to differentiate your various local, development, staging, production, live sites
7. Toolbar Extras - Additional links for "New Content" Group - create Elementor Template from Toolbar - open the Elementor Editor (live Builder) directly with a new template and start editing directly!
8. Toolbar Extras - easily install new Plugins - search for Plugins, or upload ZIP file
9. Toolbar Extras - also, easily install Themes - search for Themes, or upload ZIP file
10. Toolbar Extras - extended "Site" Group - Manage Content - Pages, Posts, Products (when WooCommerce is active) and support for additional plugins as well ...
11. Toolbar Extras - example of supported Plugin "Code Snippets"
12. Toolbar Extras - Nav Menus - jump to admin/ Customizer pages - edit existing menus, including the optional "Toolbar Admin Menu"
13. Toolbar Extras - example for "UpdraftPlus" re-hooked from top-level Toolbar to a sub-item
14. Toolbar Extras - smart tweak: use the same color scheme for Toolbar on the frontend as in the WP-Admin
15. Toolbar Extras - smart tweak: optionally remove WP Logo (and sub-items) and replace with "World" Group - link to your site (new browser tab), plus lots of external resources for site management
16. Toolbar Extras - the "World" Group with site icon (if set in the Customizer)
17. Toolbar Extras - on frontend, deep links are added for the Customizer, to jump directly into a panel, or a section
18. Toolbar Extras - on the right side, add a "User" Group - list roles, do administrative stuff
19. Toolbar Extras - optional "Dev Mode" - links for developers, including the Code Editors
20. Toolbar Extras - optional (Super) Admin Toolbar Menu - filled with custom links ...
21. Toolbar Extras - create this optional Admin Toolbar Menu directly with the WordPress menu system - so easy!
22. Toolbar Extras - plugin's settings page (under "Settings") - tab "General" - all the common settings
23. Toolbar Extras - plugin's settings page (under "Settings") - tab "Smart Tweaks" - change Toolbar behavior of WordPress, plus a few third-party plugins
24. Toolbar Extras - plugin's settings page (under "Settings") - tab "Development" - for setting "Local Development Environment" as well as "Dev Mode"
25. Toolbar Extras - plugin's settings page (under "Settings") - tab "About & Support" - support info etc.
26. Toolbar Extras - easily change the icon of various Toolbar links of the plugin with the Dashicon picker
27. Toolbar Extras - help tab for Admin Toolbar Menu
28. Toolbar Extras - Site Health Debug Info screen with additional info (WP 5.2+)
29. Toolbar Extras - Optional "What Template?" feature to detect template file name of current displayed page/ document
30. Toolbar Extras - Import/Export of plugin's settings via .json file - also for any of the official Add-Ons
31. Toolbar Extras - "Website Settings", bunch of sub items within the Site Group, mirrors official WordPress settings for the site
== Changelog ==
([For the full changelog of this plugin visit its website at ToolbarExtras.com](https://toolbarextras.com/changelogs/toolbar-extras/))
= ⚡ 1.4.9 - 2019-11-28 =
* [Change log](https://toolbarextras.com/changelog/version-1-4-9/)
* *New: Successfully tested with WordPress 5.3*
* New: Added **sub items for file types (Mime Types)** to the Media Library within the Site Group - for Images, PDFs, Audio, Video - this allows for really convenient filtering 😀
* New: Added **full support for the whole "Toolset" suite of plugins** (all Premium, by OnTheGoSystems)
* New: Added **full support for the whole "WPML (Multilingual CMS)" suite of plugins** (all Premium, by OnTheGoSystems)
* Tweak: Let "New Reusable Block" not appear in Network Admin (Multisite)
* Tweak: For "weForms" plugin support, added integration for Pro Version (Add-On)
* Tweak: For "WPForms Pro" plugin support, added integration with 2 more Pro Add-Ons; additionally added/tweaked external resources
* Tweak: For "Church Content" plugin support, moved the whole item collection to the Site Group (Manage Content), refined items, added resources as well as support for the Pro Add-On
* Tweak: For all ChurchThemes.com Themes (Jubilee, Saved, Maranatha, Exodus, Resurrect) - refined support, added new items
* Tweak: For "Kadence Blocks" plugin support, greatly improved Pro version integration, including *Form Blocks* with saved DB entries
* Tweak: For "Genesis Design Palette Pro" plugin support, added new *Block Styles* item
* Tweak: For "Elegant Blocks" plugin support, added new "Clients" sub item
* Tweak: For "Stackable" plugin support, added new resource items
* Tweak: Removed "CoBlocks" plugin support as the plugin no longer has any settings or info page
* Tweak: Improved file includes and organisation for plugin support
* Tweak: For Genesis Framework support, subtle improvements for tweaked admin menus, plus more refinements
* Tweak: For Nginx Server Environments added two (optional) external resource items
* Tweak: Subtle style improvements for WordPress 5.3+ (settings page)
* Tweak: Updated bundled library DDWlib Plugin Installer Recommendations to latest version (v1.5.1)
* Tweak: Updated `.pot` file plus all German translations (formal, informal) and language packs
* Fix: Avoid any fatal error on Multisite (for Dashboard widget)
* Fix: Fixed wrong German translations (grammar, typos)
* Fix: Numerous smaller errors, notices and code inconsistencies
**New, 1.4.9:** *Extended the Theme support for:*
* Jubilee (Premium, by ChurchThemes.com LLC)
* Agent Focused Pro (Premium, by Marcy Diaz for Winning Agent), a Child Theme for Genesis (Note: only version 2.0.0 or higher supported!)
* GutenBooster (free, by Onur Oztaskiran)
* Bstone (free, by Stack Themes), including plugins: *Bstone Demo Importer (free)* and *Bstone Light (free)* (both by Stack Themes)
* Reykjavik (free, by WebMan Design/ Oliver Juhas)
* Primer (free, by GoDaddy)
* Ashe (free, by WP Royal)
* Mesmerize (free, by Extend Themes/ Horea Radu), including plugin: *Mesmerize Companion* (free, by Extend Themes/ Horea Radu)
* Total (free, by Hash Themes)
**New, 1.4.9:** *Extended the Plugin support for Elementor Add-Ons:*
* WunderWP (free, by Artbees)
* Extensions For Elementor (free, by mayanksdudakiya)
* Elementor Addons – Premium Elementor Addons with Templates & Blocks (free, by Oxilab/ biplob018)
* WPHobby Addons for Elementor (free, by WPHobby)
* JetTricks (Premium, by Zemez Jet/ Crocoblock)
**New, 1.4.9:** *Extended the general Plugin support for:*
* Church Content Pro (Premium, by ChurchThemes.com LLC)
* weForms Pro - Professional (Add-On) (Premium, by weDevs)
* Ivory Search (free, by Ivory Search)
* [qTranslate-XT (free, by qTranslate Community)](https://github.com/qtranslate/qtranslate-xt)
* Search & Replace (free, by Inpsyde GmbH)
* Better Search Replace (free, by Delicious Brains)
* Borlabs Cookie (Premium, by Benjamin A. Bornschein, Borlabs)
* AgentPress Listings (free, by StudioPress)
* Sermon Manager for WordPress (free, by WP for Church)
* Sermon Manager Import (free, by Kyle Hornberg)
* Media from FTP (free, by Katsushi Kawamori)
* WPForms Conversational Forms (Add-On) (Premium, by WPForms LLC)
* WPForms Form Pages (Add-On) (Premium, by WPForms LLC)
* WP Toolbelt (free, by Ben Gillbanks) - *Note: This is a **bloat-free** Jetpack alternative!*
* Sticky Header 2020 (free, by Iulia Cazan) - *Adds additional Customizer options for the "Twenty Twenty" theme*
**New, 1.4.9:** *Extended Plugin support for Block Editor Add-Ons (Gutenberg):*
* GutenBee (free, by The CSSIgniter Team)
* Kioken Blocks (free, by Kioken Theme)
* Potter Kit – Custom Blocks and Templates (free, by Potter LLC)
* WPBricks Readymade Custom Gutenberg Blocks (free, by Multidots)
* Foxdell Folio Block Editor Customiser (free, by Foxdell Folio)
* Foxdell Folio BEC Disable Core Blocks (free, by Foxdell Folio)
* Gutenberg (free, by Gutenberg Team)
**New, 1.4.9:** *Toolset & WPML suites of plugins (all Premium, by OnTheGoSystems):*
* Toolset Types
* Toolset Views
* Toolset Forms
* Toolset Access
* Toolset Layouts
* Toolset Module Manager
* Toolset Framework Installer (Reference Sites)
* Toolset WooCommerce Views
* Toolset Forms Commerce
* Toolset Advanced Export
* Toolset Layout Migration
* WPML Multilingual CMS
* WPML Media
* WPML String Translation
* WPML Translation Management
* WPML Sticky Links
* WPML CMS Nav
* WooCommerce Multingual
= ⚡ 1.4.8 - 2019-10-22 =
* [Change log](https://toolbarextras.com/changelog/version-1-4-8/)
* New: Added **"News & Updates" Dashboard widget** - only viewable for (Super) Admins, can easily be disabled via "Screen Options" (top right corner) - Note: settings integration will follow, though
* New: Added way **more specific, helpful resources within the WordPress Logo/ About group** (finishing the work that began with plugin version 1.4.5)
* New: Added **shortcut to plugin's settings in Multisite** Network Admin (only to the main site of the Network, though)
* New: Added **shortcuts to plugin's settings** tabs on the **Elementor "General Settings"** admin page (as extra tab there)
* New: **For [ClassicPress](https://www.classicpress.net/) installs** added new "Toolbar Extras" **info page under "Security"** admin menu (for ClassicPress v1.1.0+)
* New: You can now also leverage **"WPCore Plugin Manager" plugin to bulk install plugins** - if active, new item and sub items appear within the "New Content" Group
* Tweak: Extended "WP About" sub items with more stuff when *Dev Mode* is enabled
* Tweak: Refined "Mailster" plugin support, added new sub items (Setup Wizard, Tests) and one new resource item (Changelog)
* Tweak: Refined "Formidable Forms" plugin support, added new sub items for Pro version and 2 Pro Add-Ons, plus one new resource item (Changelog)
* Tweak: Improved readability of settings page description texts - now they have an enforced `max-width` of 800px (much better on bigger screens/ viewports...!)
* Tweak: Refinements for the Plugin Manager for Add-Ons - info screens, minimum version management, descriptions
* Tweak: Updated bundled library DDWlib Plugin Installer Recommendations to latest version (v1.5.0) - better performance due to the use of transients
* Tweak: Updated bundled library Astra Notices to latest version (v1.1.4)
* Tweak: Properly enqueued inline styles also for Local Dev Environment feature
* Tweak: Properly enqueued inline styles also for "Gravity Forms" plugin support
* Tweak: Minor security improvement for settings page
* Tweak: Minor enhancements throughout the plugin
* Tweak: Where possible, migrated all the plugin's Toolbar items over from Global usage to `$admin_bar` object to be more in line with WP standards
* Tweak: Updated `.pot` file plus all German translations (formal, informal) and language packs
* Tweak: If available, use new WP 5.0+ function `determine_locale()` for even better (user) locale detection
* Fix: CSS issue on Plugins page - info & update action links from other plugins are no longer hidden
* Fix: Fixed admin URL for Genesis Child Themes "Brunch Pro", "Cook'd Pro" and "Foodie Pro"
* Fix: Fixed loading for "Pretty Chic" Child Theme support
**New, 1.4.8:** *Extended the Theme support for:*
* Course Maker Pro (Premium, by brandiD), a Child Theme for Genesis
* Cafe Pro (Premium, by StudioPress), a Child Theme for Genesis
* Pretty Creative (Premium, by Lindsey Riel), a Child Theme for Genesis
**New, 1.4.8:** *Extended the Plugin support for Elementor Add-Ons:*
* Prime Slider Lite Addons for Elementor (free, by BdThemes)
* Happy Elementor Addons (free, by HappyMonster/ weDevs)
* Ruvuv Extension for Elementor (free, by Ruvuv)
**New, 1.4.8:** *Extended the general Plugin support for:*
* Options for Twenty Nineteen (free, by webd.uk) - *Adds additional Customizer options for the "Twenty Nineteen" theme*
* Options for Twenty Seventeen (free, by webd.uk) - *Adds additional Customizer options for the "Twenty Seventeen" theme*
* Customize Twenty Seventeen (free, by BoldThemes) - *Adds additional Customizer options for the "Twenty Seventeen" theme*
* Customize Twenty Sixteen (free, by BoldThemes) - *Adds additional Customizer options for the "Twenty Sixteen" theme*
* Advanced Twenty Seventeen (free, by saturnplugins) - *Adds additional Customizer options for the "Twenty Seventeen" theme*
* Instant Indexing for Google (free, by Rank Math)
* weForms (free, by weDevs)
* Fluent Forms (Pro) (free/Premium, by WP Fluent Forms)
* MailOptin Lite (free, by MailOptin Team)
* WPCore Plugin Manager (free, by Stuart Starr)
* Delete Expired Transients (free, by WebAware) - *for Dev Mode*
* Transient Cleaner (free, by David Artiss) - *for Dev Mode*
= ⚡ 1.4.7 - 2019-09-20 =
* [Change log](https://toolbarextras.com/changelog/version-1-4-8/)
* *New: Successfully tested with WordPress 5.3 Beta*
* New: Brand new **Import/ Export feature** to export or import the plugin's own settings via a .json file - including (official) Add-Ons, if these are currently active --- this feature allows you to easily transfer/ migrate the plugin's settings over to new installs or just make personal backups
* New: Added **group of "Website Settings" items/ sub items to the Site Group** - this pretty much covers all official/ default WordPress settings pages under "Settings" - now you have handy shortcuts for those important settings (for example *Permalinks*) from the frontend AND the admin! 😁
* New: **"What Template?" feature** - adds a new top-level item to the Toolbar showing you the file name of the current used Template for the currently displayed page/ document, plus template parts, relative path and Parent/ Child Theme name -- ***Note:** currently this can only be enabled with Dev Mode active and `add_theme_support( 'tbex-show-current-template' );` added via [Code Snippet](https://wordpress.org/plugins/code-snippet/) or your (Child) Theme's `functions.php` (in a next plugin major version this gets even better settings integration, yeah!)*
* Tweak: For "Release Notes" under WordPress About (Logo) item, added logic to completely exclude alpha, beta and RC versions; added ClassicPress compat
* Tweak: For "Elementor" Core plugin support, added new resource item (Developer Blog)
* Tweak: For "Astra" theme support, added full compatibility with Astra 2.0+, including for the Pro Add-On - the Astra 1.x versions are still supported as well
* Tweak: For "JetEngine" plugin support, added new items since plugin version 2.0.0 or higher, and refined some existing ones; plus more improvements
* Tweak: For "HappyForms" plugin support, tweaked existing items, added support for Pro version, plus "Builder Template Categories" integration
* Tweak: For "Rank Math SEO" plugin support, added WooCommerce items, plus, far better module detection logic
* Tweak: For "ToolKit for Elementor" plugin support, re-positioned New Content item
* Tweak: For "Block Lab" plugin support, added new "Settings" item, plus lots more external resources
* Tweak: For "Element Pack" plugin support, implemented support for brand new lite version of this plugin, plus, added changelog items
* Tweak: Refined support for all "Twenty" default themes, especially for the Customizer deep links
* Tweak: Subtle improvements to our Elementor Finder integration
* Tweak: Migrated almost all our styles to proper enqueuing and/or the usage of wp_add_inline_style() - this is our first part of styling improvements throughout the plugin
* Tweak: Some globally used functions (within the plugin) and files were re-organized for better maintenance
* Tweak: On settings page implemented better semantic markup, as recommended for WP 5.2+
* Tweak: Improved internal resources for Add-Ons; added lots of new helper functions
* Tweak: Updated bundled library DDWlib Plugin Installer Recommendations to latest version (v1.4.2) - code improvements, fixes
* Tweak: Updated `.pot` file plus all German translations (formal, informal) and language packs
* Tweak: Added new screenshots for the newly added features
* Fix: Fixed styling of color picker container, plus Dashicons appearance in our help tabs and other occurrences - all caused by changes in WP 5.2.3+
* Fix: Fixed wrong function name for "Duplicator Pro" plugin support
* Fix: Fixed notices for "Login Designer" plugin support
**New, 1.4.7:** *Extended the Theme support for:*
* Twenty Twenty (free, by the WordPress.org team) - *Note: the new default theme for 2020 and WordPress 5.3+*
* Neve (free, by ThemeIsle), including plugins: *Neve Pro Addon (Premium)* and *Neve Hooks (free)* (both by ThemeIsle)
* Zakra (free, by ThemeGrill), including plugin *ThemeGrill Demo Importer (free)* (both by ThemeGrill)
* Responsive (free), including plugin *Responsive Add Ons (free)* (both by CyberChimps)
* Airi (free, by athemes)
**New, 1.4.7:** *Extended the Plugin support for Elementor Add-Ons:*
* MetForm (free, by WpMet) - *Form Builder for Elementor*
* Element Pack Lite (free, by BdThemes)
* Elements Kit Lite/Pro (free/Premium, by WpMet)
* HT Builder (free, by HasThemes/ HT Plugins)
* HT Builder Pro (Premium, by HasThemes/ HT Plugins)
* The Pack Addons (Premium, by XLDevelopment/ Web Angon/ Ashraf)
**New, 1.4.7:** *Extended the general Plugin support for:*
* HappyForms Pro (Premium, by The Theme Foundry)
* SEO for WooCommerce (free, by Rank Math)
* Flo Forms (free, by Flothemes)
* WP Crontrol (free, by John Blackbourn & crontributors) - *for Dev Mode*
* Advanced Cron Manager (free, by BracketSpace) - *for Dev Mode*
**New, 1.4.7:** *Extended Plugin support for Block Editor Add-Ons (Gutenberg):*
* Block Areas (free, by The WP Rig Contributors)
* BlockyPage Gutenberg Blocks (free, by BlockyPage Team)
* Gutentor (free, by Gutentor)
= ⚡ 1.4.6 - 2019-08-12 =
* [Change log](https://toolbarextras.com/changelog/version-1-4-6/)
* New: [Brand new Add-On for Give Donations (GiveWP) released!](https://wordpress.org/plugins/toolbar-extras-givewp/)
* New: For all changes see version 1.4.5 below 😁
* Tweak: Hot fix for update issue
= ⚡ 1.4.5 - 2019-08-12 =
* [Change log](https://toolbarextras.com/changelog/version-1-4-5/)
* New: Added support for Elementor Pro v2.6+ where needed ("Custom Icons" for example)
* New: Added very useful "Changelog" resource item to some supported plugins and themes, including Elementor (free) and Elementor Pro
* New: For optional "Web Group" added new 6 new services for live testing URLs - Facebook Debugger, plus 5 more Google Services!
* New: Added useful sub items to WordPress Logo/ About group, including release notes for WordPress version of your current install (dynamic!)
* New: Added theme support for "Chaplin" (free, by Anders Norén)
* New: Added ["Milestones" Page to plugin website](https://toolbarextras.com/milestones/) to list amazing achievements of this plugin project
* Tweak: For "Essential Addons" plugin support, added new resource items (videos, changelog); removed deprecated item
* Tweak: For "The Plus Addons" plugin support, added new resource items (facebook group, changelog)
* Tweak: For "JetSmartFilters" plugin support, added new items (settings, changelog)
* Tweak: For "CartFlows" plugin support, added new Setup Wizard items; removed WooCommerce dependency (since CartFlows can now also operate without it)
* Tweak: For "WooLentor" plugin support, added new item and pro version integration
* Tweak: Plugin support for "Reusable Blocks – Elementor, Beaver Builder, WYSIWYG" (free, by WebEmpire) rebranded because plugin changed its name/branding etc. (former name was: "Design Sidebar Using Page Builder")
* Tweak: Various smaller addition and tweaks for even better support of our official Add-Ons (helper functions, styles)
* Tweak: Lots of under the hood improvements on code base, and for CSS styles
* Tweak: Updated `.pot` file plus all German translations (formal, informal) and language packs
* Fix: Fixed PHP notice if setting of a default page builder enabled but the appropriate builder was deactivated meanwhile
* Fix: Duplicate function declarations
**New, 1.4.5:** *Extended the Plugin support for Elementor Add-Ons:*
* JetTabs (Premium, by Zemez Jet/ Crocoblock)
* JetBooking (Premium, by Zemez Jet/ Crocoblock) - *A special JetEngine Add-On*
* Social Addons for Elementor (Lite) (free, by WebEmpire)
* ToolKit for Elementor (Premium, by ToolKit for Elementor)
* WooLentor Pro (Premium, by HasThemes/ HT Plugins)
**New, 1.4.5:** *Extended the general Plugin support for:*
* Rank Math SEO (free, by Rank Math)
* Redirections by Rank Math (free, by Rank Math)
* 404 Monitor by Rank Math (free, by Rank Math)
* Schema Markup Rich Snippets (free, by Rank Math)
= ⚡ 1.4.4 - 2019-07-04 =
* [Change log](https://toolbarextras.com/changelog/version-1-4-4/)
* New: [Brand new Add-On for MainWP Dashboard released!](https://wordpress.org/plugins/toolbar-extras-mainwp/)
* New: Added 31 new Dashicons from WordPress 5.2+ to our list of Dashicons icon picker (on our settings page) - only if your install runs WordPress 5.2 or higher
* New: New resource for "Genesis Customizer" theme - Facebook Group
* New: Added optional "StudioPress/ Genesis Blue" color item for settings color picker palettes (optional, if Genesis is active)
* New: Added optional "WooCommerce Violet" color item for settings color picker palettes (optional, if WooCommerce is active)
* New: Added optional "EDD Cello" and "EDD Blue" color items for settings color picker palettes (optional, if Easy Digital Downloads (EDD) is active)
* Tweak: For "Genesis Customizer Pro" plugin support made the module logic work again to display the additional Customizer deep links
* Tweak: For Genesis theme support, special tweaks for the Customizer redirection of official Genesis theme settings
* Tweak: For "Essential Addons for Elementor" added support for version 3.x, plus new item "Tools"
* Tweak: For "WP Security Audit Log" plugin support added new item "Export/Import"
* Tweak: For "Forminator" plugin support added new settings sub items
* Tweak: For "Hustle" plugin support added new items
* Tweak: Refined resource links for Gutenberg Block Editor
* Tweak: Refined resource links for "Hello Elementor" theme support
* Tweak: Various smaller improvements on code base
* Tweak: Updated `.pot` file plus all German translations (formal, informal) and language packs
* Fix: Various smaller fixes
**New, 1.4.4:** *Extended the general Plugin support for:*
* Form Vibes (free, by WPVibes)
* Tweaks for GeneratePress (free, by John Chapman)
* Activity Log (free, by Activity Log Team)
* User Activity Log (free, by Solwin Infotech)
* Stream (free, by XWP)
* Simple History (free, by Pär Thernström)
* EditorsKit (free, by Jeffrey Carandang/ Phpbits Creative Studio)
* Site Health Manager (free, by Rami Yushuvaev)
* Site Health Tool Manager (free, by William Earnhardt)
* Pods - Custom Content Types and Fields (free, by Pods Framework Team)
* Meta Box (free, by MetaBox.io) + these Add-Ons: MB Custom Post Type, MB Custom Taxonomy, Meta Box Template, Meta Box Builder (2.x & 3.x)
* WPvivid Backup Plugin (free, by WPvivid Team)
= ⚡ 1.4.3 - 2019-05-14 =
* [Change log](https://toolbarextras.com/changelog/version-1-4-3/)
* *New: Successfully tested with WordPress 5.2*
* *New: Successfully tested with ClassicPress 1.0.1*
* New: [Brand new Add-On for Oxygen Builder released!](https://wordpress.org/plugins/toolbar-extras-oxygen/)
* New: Theme support for "Genesis Customizer" (free, by SEO Themes), including plugins: *Genesis Customizer Core (free)* and *Genesis Customizer Pro (Premium)* (both by SEO Themes) -- *Note: This is an awesome special Child Theme for the Genesis Framework perfectly suited for Non-Coder Designers, Non-Techies and Site Builders! 😎*
* New: Added plugin support for additional 4 extensions of "Mai Themes for Genesis" - *Mai Favorites*, *Mai Testimonials*, *Mai Styles*, *Mai Ads & Extra Content* (all Premium, by Mike Hemberger, BizBudding Inc.)
* New: Added plugin support for Suki Sites Import (free, by SukiWP/ David Rozando)
* New: For Code Snippets plugin: optionally add all Code Snippets as submenu items, via filter ([see code snippet](https://toolbarextras.com/docs/code-snippets-listing-toolbar/))
* New: Completely refined plugin website supported [Themes](https://toolbarextras.com/theme-support/), [Plugins](https://toolbarextras.com/plugin-support/), [Elementor Add-Ons](https://toolbarextras.com/elementor-addons-support/) and [Gutenberg Block Editor Add-Ons](https://toolbarextras.com/gutenberg-block-editor-support/) listings - all are now powered by dynamic data, are fully updated, and got search filters (for title)
* New: Created [listing of abandoned plugins](https://toolbarextras.com/docs/support-policy-for-abandoned-plugins/) where the integration in Toolbar Extras is set for deprecation and therefore future removal - [see Support Article on plugin's website](https://toolbarextras.com/docs/support-policy-for-abandoned-plugins/)
* New: Integrated with WordPress 5.2+ new Site Health feature: Toolbar Extras now has an extra section on the Debug Info tab - this is especially helpful for support requests
* New: Above mentioned Debug Info also appears on "Debug Info" in "Health Check" plugin for WordPress versions below 5.2 -- *Note: Health Check items won't appear in WP 5.2, though!*
* New: Added Site Health & Debug items to Site Group as well (WP 5.2+ required)
* New: Added few subtle tweaks for even better support for ClassicPress, color item, some labels, Plugin Installer etc.
* New: Added formal German translation for Readme on WordPress.org (this will optionally be shown in plugin installer in Admin)
* Tweak: Set proper parent menu and submenu highlighting relationship for our additional Plugin and Theme uploader menus (via Dev Mode)
* Tweak: Further refined Gutenberg Block Editor support, additional Admin menu item, plus submenu
* Tweak: Enhanced "GeneratePress" theme support - more Customizer deep links, more resources
* Tweak: Refined "Hello Elementor" theme support - to also integrate with new [theme version from wordpress.org](https://wordpress.org/themes/hello-elementor/)
* Tweak: For "AnalogWP Templates" plugin support added their new Style Kits feature as items
* Tweak: For "Envato Elements" plugin support updated their admin URLs, added new resources for the service
* Tweak: For "WPForms" plugin support added another third-party integration; plus other minor enhancements
* Tweak: For "Schema Pro" plugin support added new optional Breadcrumb item
* Tweak: For "Atomic Blocks" plugin support added new Settings item
* Tweak: For "Essentail Premium Addons for Elementor" (by wpcodestar) plugin support added new API Settings item
* Tweak: For "Ultimate Blocks" plugin support added new item and resource
* Tweak: For "A/B Testing for WordPress" plugin support added new item
* Tweak: For "Piotnet Addons for Elementor (PAFE)" added optional "Forms Database" item - optionally also add items to Forms hook place in Site Group
* Tweak: For "Elementor Contact Form DB" plugin support added new items and resources - *Note: [The plugin is finally available on wordpress.org!](https://wordpress.org/plugins/sb-elementor-contact-form-db/)*
* Tweak: Refined plugin support for "Premium Addons for Elementor" (by Leap13) to make it work better (and again)
* Tweak: Enhanced "Genesis Design Palette Pro" plugin support - new "Fonts" item, plus 3 free Add-Ons integrated
* Tweak: Enhanced plugin support for "Mailchimp for WP" - added support for 7 more of their integrations
* Tweak: Enhanced theme & (pro) plugin support for "Suki" theme
* Tweak: Added Twenty Nineteen support to supported themes of "Themer Pro" plugin (since v1.1.0+ of Themer Pro!)
* Tweak: Changed wording for "PithyWP Templates" plugin support after their subtle renaming
* Tweak: Added our "Add-Ons" settings tab to our Elementor Finder feature support
* Tweak: On our "About & Support" admin page, integrated with *Site Health Debug Info* for support purposes
* Tweak: Improved Multisite support for Plugin & Theme Uploader pages
* Tweak: Reorganized compatibility functions/ layer behind the scenes, for plugins etc.
* Tweak: Correct logic behind optional Gallery/Slider plugin hook place so it doesn't appear as empty item any longer
* Tweak: Refined recommended Gutenberg-specific plugins for "Plugin Installer Recommendations" library
* Tweak: Remove "Jetpack Ads" as far as possible (since Jetpack 7.1+)
* Tweak: Remove "WooCommerce Ads/ Suggestions" as far as possible (since WooCommerce 3.6+)
* Tweak: Updated bundled library DDWlib Plugin Installer Recommendations to latest version (v1.4.1) - feature updates
* Tweak: Updated `.pot` file plus all German translations (formal, informal) and language packs
**New, 1.4.3:** *Extended the Plugin support for Elementor Add-Ons:*
* Flexible Elementor Panel (free, by Alex Shram/ Flexible-Elementor-Panel.com)
* Multidomain Support for Elementor (free, by Alex Zappa)
* Bestfreebie Elementor Icons (free, by Bestfreebie)
* The Plus Addons for Elementor Lite/Pro (free/Premium, by POSIMYTH Themes)
* Unlimited Elements for Elementor Lite/Pro (free/Premium, by Blox Themes)
* WooLentor - WooCommerce Elementor Addons + Builder (free, by HasThemes/ HT Plugins)
* Advamentor (free, by Themexa)
* DT WooCommerce Page Builder for Elementor (Premium, by DawnThemes)
* Clever Mega Menu for Elementor (free, by CleverSoft)
**New, 1.4.3:** *Extended the general Plugin support for:*
* GP Related Posts (free, by Jon Mather)
* [GP Elements Disable (free, by Jon Mather)](https://github.com/WestCoastDigital/gp-elements-disable)
* WordPress Color Picker Enhancement (free, by P. Roy)
* Advanced Custom Fields (free, by Elliot Condon) - *Note: only ACF version 5.x or higher! (v4.x not supported!)*
* Advanced Custom Fields Pro (Premium, by Elliot Condon)
* Advanced Custom Fields: Extended (free, by ACF Extended) - *Note: a third-party ACF Pro Add-On*
* Advanced Forms (free, by Fabian Lindfors/ Hookturn Digital Pty Ltd) - *Note: a third-party ACF Pro Add-On*
* Custom Field Suite (free, by Matt Gibbs)
* Shortcoder (free, by Aakash Chakravarthy)
* Imagify Image Optimizer (free, by WP Media)
* ShortPixel Image Optimizer (free, by ShortPixel)
* Smush Image Compression and Optimization (free, by WPMU DEV)
* EWWW Image Optimizer (free, by Exactly WWW)
* Compress JPEG & PNG Images (free, by TinyPNG)
* Design Sidebar Using Page Builder (free, by WebEmpire) - *for Elementor, Beaver Builder, Classic Editor*
**New, 1.4.3:** *Extended Plugin support for Block Editor Add-Ons (Gutenberg):*
* CoBlocks (Page Builder Gutenberg Blocks) (free, by GoDaddy/ CoBlocks)
* Otter Blocks (Gutenberg Blocks and Template Library) (free, by ThemeIsle)
* Block Style Guides for Gutenberg (free, by Robert Gillmer)
* Add RichText Toolbar Button (free, by Technote)
= ⚡ 1.4.2 - 2019-03-31 =
* [Change log](https://toolbarextras.com/changelog/version-1-4-2/)
* New: Added "Add-Ons" tab to plugin's settings page, featuring official, supported and recommended Add-Ons -- preparing for first official Add-On release(s) 😉
* New: Lots of additions and refinements under the hood to make official Add-Ons work smarter (extends the groundwork from v1.4.0)
* New: Tweaks and additions for (optional) post type archive items, plus new sub items, including special support for Genesis CPT Archive Settings
* New: [The plugin now has its own Supporter page on Patreon.com](https://www.patreon.com/deckerweb) - become a patron and support ongoing development
* New: [The plugin now hat its own Instagram channel](https://www.instagram.com/toolbarextras) - please follow us and like our content
* New: [The plugin now hat its own Twitter account](https://twitter.com/toolbarextras) - please follow us and like & retweet our tweets
* New: Added generic, reusable class to better support/integrate generic post types from plugins and themes
* New: Added optional "My Plugin Manager" library by Theme Blvd for the upcoming Add-Ons for Toolbar Extras to manage plugin dependencies and suggestions
* *New: Successfully tested with WordPress 5.1.1*
* Tweak: Refined core support for Block Editor (Gutenberg) in some minor areas/ aspects
* Tweak: Refined settings sections internally that only display conditionally for certain supported third-party plugins
* Tweak: Further optimized admin settings pages, including the branding/ styling
* Tweak: Enhanced plugin support for "JetEngine" - integrated new Booking Forms module
* Tweak: Enhanced plugin support for "Essential Addons for Elementor" (by WPDeveloper/ Codetic)
* Tweak: Enhanced plugin support for "Builder Template Categories"
* Tweak: Enhanced plugin support for "Mailchimp for WP"
* Tweak: Implemented admin URL change for "Ultimate Addons for Elementor" plugin support
* Tweak: Implemented admin URL change for "Ultimate Addons for Gutenberg" plugin support
* Tweak: Greatly enhanced theme support for "OceanWP" (Customizer deep links)
* Tweak: Added developer resources for "Genesis" theme support
* Tweak: Changed item links for "Mai Theme" theme support (Genesis-specific)
* Tweak: Changed item link for "Epic News Elements" plugin support
* Tweak: Changed resource links for "Element Pack" plugin support where needed
* Tweak: Re-enabled plugin support for "Code Snippets" plugin after latest Code Snippets update(s)
* Tweak: Local Development Environment feature: now also supports the constant `WP_LOCAL_DEV` from WordPress Core
* Tweak: Dev Mode: Added new resource for Child Themes
* Tweak: Replaced "Google+" sharing with "LinkedIn" on the "About & Support" page (as Google+ gets shut down in April 2019)
* Tweak: Small improvements and tweaks to the core plugin, including for Multisite
* Tweak: Updated bundled library DDWlib Plugin Installer Recommendations to latest version (v1.3.0) - feature updates
* Tweak: Updated bundled library Persistant Admin notices Removal to latest version (v1.4.3)
* Tweak: Updated bundled library Astra Notices to latest version (v1.1.2)
* Tweak: Updated `.pot` file plus all German translations (formal, informal) and language packs
* Fix: Notice for Element IDs (Dev Mode) on post type archive on frontend
**New, 1.4.2:** *Extended the Theme support for:*
* Layers for Elementor (free, by Elementor Team/ Elementor Ltd.)
* Woostify (free, by BoostifyThemes), including plugins: *Woostify Sites Library (free)* and *Woostify Pro Add-On (Premium)* (both by BoostifyThemes)
* Zita (free, by WpZita team), including plugins: *Zita Site Library (free)* and *Zita Pro Add-On (Premium)* (both by WpZita team)
* Stackable (free, by Gambit Technologies, Inc.)
* Futurio (free, by FuturioWP), including plugins: *Futurio Extra (free)* and *Futurio Pro (Premium)* (both by FuturioWP)
* Jupiter X (Premium, by Artbees), including plugin: *Raven (Premium)*
* Rife Free & Rife Pro (free/Premium, by Apollo13Themes), including plugins *Apollo13 Framework Extensions (free)* and *Rife Elementor Extensions & Templates (free)* (both by Apollo13Themes)
* Sane (free) and Sane Pro (Premium) (both by Elegant Marketplace)
* Storefront (free, by Automattic, Inc.)
* Revolution Pro (Premium, by StudioPress), a Child Theme for Genesis
* Hello Pro 2 (Premium, by brandiD), a Child Theme for Genesis
* Jessica (Premium, by 9seeds, LLC), a Child Theme for Genesis
* Kreativ Pro (Premium, by ThemeSquare), a Child Theme for Genesis
* Divine (Premium, by Restored 316 Designs // Lauren Gaige), a Child Theme for Genesis
* Pretty Chic (Premium, by Lindsey Riel), a Child Theme for Genesis
* Stag Blocks (free, by Codestag)
* Rooten (Premium, by BdThemes)
**New, 1.4.2:** *Extended the Plugin support for Elementor Add-Ons:*
* JetCompareWishlist (Premium, by Zemez Jet/ Crocoblock)
* HT Mega - Ultimate Addons for Elementor (free, by HT Plugins)
* Elementor Forms (Premium, by Elementor Forms)
* RabbitBuilder Global Central JS CSS (free, by RabbitBuilder)
* AnalogWP Templates (free, by AnalogWP)
* Layouts for Elementor (free, by Giraphix Creative)
* WPB Elementor Addons (free, by wpbean)
* Exclusive Addons for Elementor (free, by DevsCred)
* PDF Generator for Elementor (free, by RedefiningTheWeb)
* Essentail Premium Addons for Elementor (free, by wpcodestar)
* Sina Extension for Elementor (free, by shaonsina)
* Smart Fonts for Elementor (free, by codevision)
**New, 1.4.2:** *Extended the general Plugin support for:*
* HTML Forms (free, by ibericode)
* Torro Forms (free, by Awesome UG)
* BuddyForms (free, by ThemeKraft)
* Contact Form X (free, by Jeff Starr)
* Jetpack (free/Premium, by Automattic, Inc./ WordPress.com) - *including additionally added submenu items (otherwise missing), and extensive resources*
* Max Mega Menu (free, by Tom Hemsley)
* QuadMenu (free, by QuadMenu)
* [The SEO Framework - Extension Manager](https://theseoframework.com/extension-manager/) (free, by Sybre Waaijer)
* Shariff Wrapper (free, by Jan-Peter Lambeck & 3UU)
* Post SMTP (free, by Yehuda Hassine) - *Plugin formerly known as Postman*
* WP Mail SMTP (free, by WPForms LLC)
* Instagram Feed (Pro) (free/Premium, by Smash Balloon)
* Genesis Responsive Slider (free, by StudioPress), a plugin for Genesis
* CartFlows (free, by CartFlows Inc) - *For Elementor, Beaver Builder, Divi, Gutenberg Block Editor*
* Pithy Templates (free, by Pithy WP) - *For Elementor currently*
**New, 1.4.2:** *Add-Ons for the Storefront Theme:*
* Storefront Powerpack (Premium, by WooCommerce/ Automattic, Inc.)
* Storefront Blog Customiser (Premium, by WooCommerce/ Automattic, Inc.)
* Storefront Parallax Hero (Premium, by WooCommerce/ Automattic, Inc.)
* Storefront Product Hero (Premium, by WooThemes/ Automattic, Inc.)
* Storefront Pricing Tables (Premium, by WooCommerce/ Automattic, Inc.)
* Storefront Homepage Contact Section (free, by WooThemes/ Automattic, Inc.)
* Storefront Footer Bar (free, by WooThemes/ Automattic, Inc.)
* Storefront Blog Excerpt (free, by Wooassist)
* Storefront Top Bar (free, by Wooassist)
* Storefront Site Logo (free, by Wooassist)
* Storefront Footer Copyright Text (free, by QuadMenu)
* Storefront Hooks Customizer (free, by mikeyarce)
* Storefront Google Fonts (free, by Atlantis Themes)
**New, 1.4.2:** *Extended Plugin support for Block Editor Add-Ons (Gutenberg):*
* Ghost Kit (free, by nK)
* Cosmic Blocks (free, by Cosmic WP)
* WP Block Pack (free, by Falcon Theme)
* Easy Blocks for Gutenberg (free, by Liton Arefin)
* A/B Testing for WordPress (free, by CleverNode)
* Easy Blocks PRO (free, by Seerox)
* WooCommerce Custom Email Blocks (free, by VillaTheme)
* Qubely Blocks (free, by Themeum)
* Bootstrap Blocks for WP Editor (free, by Virgial Berveling)
* Guten-bubble (free, by Chronoir.net)
= ⚡ 1.4.1 - 2019-03-05 =
* [Change log](https://toolbarextras.com/changelog/version-1-4-1/)
* *New: Successfully tested with WordPress 5.1*
* Tweak: Added new resource link for "Elementor Extras" (by Namogo) plugin support
* Tweak: Added new developer resource link for "WPForms" plugin support
* Tweak: Changed GitHub resource links for Elementor support to new the URLs
* Tweak: Switched the Customizer and Admin link positions for "Nav Menus" in the Site Group
* Tweak: Updated `.pot` file plus all German translations (formal, informal) and language packs
* Fix: Removing of WordPress Widgets from Elementor Live Editor (panel) now works again, especially with Elementor 2.5.0 or higher - thanks to user feedback ([Topic](https://wordpress.org/support/topic/remove-wordpress-widgets-incompatible-with-elementor-2-5/))
= 🎉 1.4.0 - 2019-01-14 =
* [Change log](https://toolbarextras.com/changelog/version-1-4-0/)
* New: Full support for WordPress 5.0+ new Block Editor (Gutenberg) - set as default "Page Builder" integration (for Toolbar); also supported are popular plugins "Classic Editor" and "Disable Gutenberg" plugins
* New: Lots of additional resource links for Block Editor (Gutenberg) added (can be disabled like other resources)
* New: Support for dozens of Block Editor specific Gutenberg Add-On plugins and themes now built-in - see appropriate changelog sections below -- the add-on support can be disabled via plugin's settings
* New: You can now set a default Page Builder (in General settings tab) - perfect if you are using the new Block Editor (Gutenberg) for posts but Elementor Page Builder for everything else - this is also in preparation for upcoming Add-Ons for other Page Builders
* New: Add new items to the WP Comments Group - as well as the popular newcomer "Thrive Comments" plugin - additional items can be disabled via plugin's settings
* New: Add plugin support for "Thrive Comments" (Premium, by Thrive Themes) - if active it replaces the comments moderation link in the Toolbar with the Thrive Comments Moderation queue, which is only logical (and natural then) - of course this integrates with the before mentioned WP Comments Group support as well 😉
* New: Customize the Howdy/Welcome item on top right corner - replace "Howdy" word, or use complete custom strings; set custom URL
* New: Greatly enhanced the "Fallback" item (instead of Main item, in "Build" Group) - if no supported Page Builder active, you can now still set a different icon, name and even URL
* New: For Main Item (Build Group) you can now optionally set a custom URL, including the URL target
* New: Added more detailed help tabs and enhanced help content throughout - also improved user guidance on different areas of the plugin
* New: On user profile pages added short info/description and link to plugin's settings page (to adjust more stuff for the Toolbar)
* New: For Dev Mode - add additional sub page under "Appearance" for the Theme Installer ZIP Uploader - more convenient for admins and site builders testing themes during development phases for example
* New: For Dev Mode - add additional sub page under "Plugins" for the Plugin Installer ZIP Uploader - more convenient for admins and site builders installing and/or testing (premium) plugins
* New: For Dev Mode - added (optional) "ID" sub item for viewing Archives, Singles, Taxonomies - makes it easier to determine the ID of a given object/item - and avoids yet another plugin
* New: For Dev Mode - added "Newest Plugins" to the plugin installer sub items in the Toolbar (developers often need to test new plugins, this new item saves them a few clicks!)
* New: For Dev Mode - added "Newest Themes" to the theme installer sub items in the Toolbar (developers often need to test new themes, this new item saves them a few clicks!)
* New: Prepared plugin internally for its first (upcoming) Add-On plugin
* New: Added full support for newest features and changes coming with Elementor v2.4.0+, including Elementor Pro v2.4.0+
* New: Added "Toolbar Extras" integration with "Elementor Finder" feature - the interactive search since Elementor v2.3.0+
* New: Added official and third-party external "Elementor Resources" to the Elementor Finder feature
* New: Added the Elementor Tools tasks for "Regnerating CSS" (clear cache) and re-syncing the (external) Template Library to the Toolbar - ***Note:** this is only available within the Admin context, not on the Frontend Toolbar!*
* New: Added full plugin support for Yoast SEO and Yoast SEO Premium, including re-hooking from the top-level to the Site Group (optional Smart Tweak)
* New: Added "Toolbar Tools" submenu to "Tools" (currently pointing to our "Smart Tweaks")
* New: Added CSS styling to fix the overflow issue from WordPress Core, with too many top-level Toolbar items, for screens/viewports equal or wider than 783px
* New: Added full Theme support for "Suki" (free), including all current features of the optional Suki Pro Add-On plugin (Premium) (both by SukiWP/ David Rozando)
* New: Added plugin support for "Easy Updates Manager" (free, by Easy Updates Manager Team) - plus a Smart Tweak to remove the top-level Toolbar item of the plugin
* New: Successfully tested with latest WordPress versions 5.0.3 and 5.0.2 before
* Tweak: Updated and further improved the styling of the plugin's settings page: easier to visually distinct various settings sections and fields - also included: better support for the "Dark Mode" plugin
* Tweak: Added new external site check service "Load Impact" to the Web Group (optional Smart Tweak)
* Tweak: Added submit/test Site URLs or Singular URLs for "GTmetrix", "Google PageSpeed Insights" and "Load Impact" for the Web Group (optional Smart Tweak)
* Tweak: Again, greatly enhanced plugin support for "Genesis Design Palette Pro" - with sub section links, plus Customizer deep links (if enabled)
* Tweak: Greatly enhanced "Customify" Theme support - added more Toolbar items, as well as all new Pro Modules (via Customify Pro Add-On plugin)
* Tweak: Improved and updated "OceanWP" Theme support, including some Add-Ons (Demos, Wizard, Posts Slider etc.)
* Tweak: Enhanced "SEOPress" plugin support with re-hook setting feature (optional Smart Tweak) to move items from top-level to the Site Group
* Tweak: Switched the Customizer and Admin link positions for "Widgets" in the Site Group
* Tweak: Enhanced "JetEngine" plugin support - which is out of beta - added Meta Boxes, Post Relations
* Tweak: Enhanced "Everest Forms" plugin support - added individual form preview links that are now available within Everest
* Tweak: For "WP Schema Pro" plugin support - respect the advanced setting of menu position (dynamic)
* Tweak: Improved "Mai Lifestyle Pro" Theme support - better integration for its "Mai Theme Engine" plugin, plus integration of "Mai Demo Importer" Add-On
* Tweak: Optimized "Genesis" overall Theme support when using lots of sub items from child theme and various supported plugins
* Tweak: Enhanced "Astra" Theme support - added EDD Customizer module
* Tweak: Enhanced "Elementor Hello" Theme support
* Tweak: Enhanced "Page Builder Framework" Theme support - new "White Label" feature via WPBF Premium Add-On
* Tweak: Improved string rendering & translations for some of the supported form builder plugins
* Tweak: Improved plugin support for "Livemesh Addons for Elementor Premium"
* Tweak: Enhanced plugin support for "WooCommerce"
* Tweak: Enhanced plugin support for "WPForms" (Lite) and "WPForms Pro"
* Tweak: Enhanced plugin support for "WP Synchro"
* Tweak: For color picker set color palette with appropriate predefined colors (Toolbar color in "Local Development Environment" settings)
* Tweak: For my own plugin, ["Builder Template Categories"](https://wordpress.org/plugins/builder-template-categories/), added it to the full Block Editor (Gutenberg) integration
* Tweak: For Dev Mode - added new resource item (Block Editor Handbook)
* Tweak: Added some new translator inline comments, and improved some existing ones
* Tweak: Updated bundled library Persistant Admin notices Removal to latest version (v1.4.2) - ***Important:** you may need to dismiss the notices once again*
* Tweak: Enhanced plugin recommendations (powered by DDWlib Plugin Installer Recommendations)
* Tweak: Updated `.pot` file plus all German translations (formal, informal) and language packs
* Tweak: Enhanced, improved and corrected Readme.txt file here - also added new FAQ entry
* Fix: Minor HTML markup issues on the settings page
**New, 1.4.0:** *Extended the Theme support for:*
* Atomic Blocks (free, by Atomic Blocks/ Array Themes)
* Editor Blocks (free, by Editor Blocks/ Danny Cooper)
* Twenty Nineteen (free, by the WordPress.org team) - *Note: the new default theme since WordPress 5.0+*
* Mai Law Pro (Child Theme for Genesis) (Premium, by Mike Hemberger, BizBudding Inc.)
* CoBlocks (free, by GoDaddy/ CoBlocks)
* Sydney (free, by athemes)
* Suki (free, by SukiWP/ David Rozando) - including Suki Pro Add-On plugin (Premium, by SukiWP/ David Rozando)
* Visual Composer Starter (free, by The Visual Composer Team)
**New, 1.4.0:** *Extended the Plugin support for Elementor Add-Ons:*