-
Notifications
You must be signed in to change notification settings - Fork 18
/
readme.txt
1026 lines (486 loc) · 27.1 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
=== Orbit Fox by ThemeIsle ===
Contributors: themeisle, codeinwp, rodicaelena, baicusandrei, hardeepasrani
Tags: widget, admin, widgets, sharing, sections, themes, stock photos, custom icons, icons, menu icons, stock, templates, header, footer, scripts, custom fonts
Requires at least: 4.7
Tested up to: 6.7
Requires PHP: 5.6
Stable tag: trunk
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
This swiss-knife plugin comes with a quality template library, menu/sharing icons, Elementor/BeaverBuilder page builder widgets and many more.
## Description ##
Extend your theme functionality with <a href="https://orbitfox.com/" rel="nofollow">Orbit Fox</a> with various modules like Social Media Share Buttons & Icons, Custom Menu Icons, Header and Footer Scripts, one click import page templates, page builder addons and free stock featured images.
https://www.youtube.com/watch?v=YHhK_twfYB8
**Features:**
- Privacy policy notice ( GDPR friendly )
- Template Directory
- Elementor Addons and Widgets
- Beaver Builder Widgets
- Sharing module
- Menu icons module
- Free stock photos module
- Custom fonts module
- Header and footer scripts module
- More widgets and sections for Hestia Theme
- More widgets and sections for Zerif Theme
You can check out the demo <a href="https://orbitfox.com/#blog" rel="nofollow" target="_blank">here</a> for a more detailed overview of the features.
OrbitFox is a user-centred plugin with an easy-to-use admin panel. One of the most important features is that modules will only be loaded if they meet two conditions. If they are needed and if they are compatible with your existing themes and plugins. This will cut down on the unnecessary bloating of your website.
We've also built some fantastic <a href="http://themeisle.com/wordpress-themes/free/?utm_source=plugin-readme&utm_medium=orbitfox&utm_campaign=freethemes" rel="nofollow" target="_blank">free themes</a> that work well with Orbit Fox, check them out.
## Frequently Asked Questions ##
### How I can get support for this plugin ? ###
You can learn more about Orbit Fox and ask for help by <a href="https://themeisle.com/contact/" >visiting ThemeIsle website</a>.
### What can I do with this plugin ? ###
This plugin extends the features of your sites by adding numerous features.
**Why use our custom icons module:**
- Choose from a large variety of custom icons.
- No coding needed, you can leverage the power of our dropdown icons selector and choose the right icon for your menu.
**Why use our sharing module:**
- It's easy to use
- Enable sharing networks right from your admin dashboard and choose on what kind of devices you would like to show them.
- It’s fully customizable: You can easily optimise button location for according to the device your visitors will use.
- Choose from more than 20+ social networks to share with full control for every device that your visitors use.
- The sharing options can be positioned for the maximum effect according to whether the visitor is using a mobile device or desktop. Best of all they can be switched on/off from your WordPress instance.
**Why use our header and footer scripts module:**
- It allows you to add global scripts in header or footer.
- You can add a script individually to run on a single page or post.
**Why use our custom Elementor addons module:**
- We offer new widgets to add more value to the content you can create within Elementor page builder.
- Pricing Table Widget to easily create pricing layouts.
- Services Widget to easily create pricing layouts.
- Post Grid Widget to easily list your Posts / Products / any other post types in a grid.
**Why use our custom Beaver Builder addons module:**
- We offer new widgets to add more value to the content you can create within the Beaver Builder page builder.
- Pricing Table Widget to easily create pricing layouts.
- Services Widget to easily create pricing layouts.
- Post Grid Widget to easily list your Posts / Products / any other post types in a grid.
**Why use our Template Directory:**
- One-click import for awesome page templates.
- Elementor templates will be added frequently for you to use creatively.
**Why use our Gutenberg Blocks:**
- We offer new widgets to add more value to the content you can create within the Gutenberg editor.
- Pricing Table Widget to easily create pricing layouts.
- Services Widget to easily create pricing layouts.
- Post Grid Widget to easily list your Posts in a grid.
**Why use our custom fonts module:**
- The free fonts from Google may not be enough to achieve the perfect design.
- It allows you to upload any font you'd like and use it on your site.
- It's fully integrated with Neve theme, all the fonst you'll add will be availabel in customizer.
## Installation ##
Activating the Orbit Fox plugin is just like any other plugin. If you've uploaded the plugin package to your server already, skip to step 5 below:
1. In your WordPress admin, go to **Plugins > Add New**
2. In the Search field type "Orbit Fox"
3. Under "OrbitFox" click the **Install Now** link
4. Once the process is complete, click the **Activate Plugin** link
5. Now, you're able to use Orbit fox and setup the modules you need. These can be found on the **Orbit Fox** dashboard page
6. Make the changes desired, then click the **Save changes** button at the bottom
## Screenshots ##
1. The OrbitFox Dashboard Page
2. The Template Directory Page
3. Menu Icons Module
4. Page Builder Widgets and Addons
5. Social Sharing Module
== Changelog ==
##### [Version 2.10.41](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.40...v2.10.41) (2024-11-22)
- Fixed issues with the latest release causing errors in the customizer
##### [Version 2.10.40](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.39...v2.10.40) (2024-11-21)
- Fixed compatibility issue with WordPress 6.7 that was throwing warnings on translations
##### [Version 2.10.39](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.38...v2.10.39) (2024-11-07)
- Updated dependencies
##### [Version 2.10.38](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.37...v2.10.38) (2024-10-10)
- disable template diectory module by default
##### [Version 2.10.37](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.36...v2.10.37) (2024-08-21)
- Enhanced security
##### [Version 2.10.36](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.35...v2.10.36) (2024-04-17)
### Improvements
- **Updated internal dependencies:** Enhanced performance, security and compatibility with Elementor.
##### [Version 2.10.35](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.34...v2.10.35) (2024-03-26)
### Improvements
- Update dependencies
- Updated icon for X (former Twitter)
##### [Version 2.10.34](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.33...v2.10.34) (2024-03-21)
### Bug Fixes
- Updated internal dependencies
##### [Version 2.10.33](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.32...v2.10.33) (2024-03-06)
### Bug Fixes
- Updated internal dependencies
- Enhanced security
##### [Version 2.10.32](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.31...v2.10.32) (2024-02-23)
### Bug Fixes
- Updated internal dependencies
##### [Version 2.10.31](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.30...v2.10.31) (2024-02-20)
### Fixes:
- Improved security
- Updated internal dependencies
##### [Version 2.10.30](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.29...v2.10.30) (2024-02-01)
### Fixes
- Enhanced Security
##### [Version 2.10.29](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.28...v2.10.29) (2024-01-31)
- Updated dependencies
##### [Version 2.10.28](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.27...v2.10.28) (2024-01-15)
### Bug Fixes
- **Pricing Table widget** sanitisation on URL.
### Improvements
- **Updated dependencies**
##### [Version 2.10.27](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.26...v2.10.27) (2023-12-18)
### Improvements
- **SDK Updates**
### Bug Fixes
- **Enhanced security**
- **Fixed the broken starter site link**
##### [Version 2.10.26](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.25...v2.10.26) (2023-06-29)
- Fix Service Widget icon
- Fix Neve page link
##### [Version 2.10.25](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.24...v2.10.25) (2023-06-15)
- Fix PHP compatibility issues
- Codebase updates
##### [Version 2.10.24](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.23...v2.10.24) (2023-04-27)
- [Fix] Improve security for the MyStock Import module
##### [Version 2.10.23](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.22...v2.10.23) (2023-03-31)
- [Fix] Added social media icons aria label text
- [Fix] Recommended plugins install error
- Update the social sharing module document link
- Update banners for WordPress.org
##### [Version 2.10.22](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.21...v2.10.22) (2022-11-30)
- [Fix] Customizer not opening when Neve is installed
##### [Version 2.10.21](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.20...v2.10.21) (2022-11-24)
* Fix - update dependencies
##### [Version 2.10.20](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.19...v2.10.20) (2022-10-17)
* Fix fatal errors on PHP 5.6 on newsletter widget.
##### [Version 2.10.19](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.18...v2.10.19) (2022-09-15)
* Fix for Bedrock installs.
##### [Version 2.10.18](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.17...v2.10.18) (2022-09-13)
* Update depencies
* Fix usage of outdated php-http/discovery package may break some sites running PHP 7.4 or higher
##### [Version 2.10.17](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.16...v2.10.17) (2022-09-05)
* Remove deprecated Gutenberg blocks module
##### [Version 2.10.16](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.15...v2.10.16) (2022-09-02)
* Fix fatal error due to late function registering.
##### [Version 2.10.15](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.14...v2.10.15) (2022-09-02)
* Update dependencies
* Fix Hestia client section image problem
* Improve security validation
##### [Version 2.10.14](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.13...v2.10.14) (2022-08-23)
* Update dependencies
* Fix Elementor's Post Grid widget responsiveness on mobile by stacking the images.
##### [Version 2.10.13](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.12...v2.10.13) (2022-07-01)
- [Fix] Add the srcset property for Hestia's free sections
- [Fix] Missing desktop position option from the social sharing module
##### [Version 2.10.12](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.11...v2.10.12) (2022-05-27)
- [Fix] Accessibility issue on social links.
- [Fix] PHP 8 deprecation warning from uksort function.
- [Fix] The policy notice can't be dismissed on cached website.
##### [Version 2.10.11](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.10...v2.10.11) (2022-02-17)
- Replace the templates module with the one based on Neve and Cloud Templates & Patterns collection
- Fix warnings with PHP 8
- Update recommended plugins
##### [Version 2.10.10](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.9...v2.10.10) (2021-12-23)
- Fix error with gutenberg-blocks
##### [Version 2.10.9](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.8...v2.10.9) (2021-12-23)
- Improve cookie policy loading
- Improve upsells when the plugin is used with Neve theme to better inform the possibilities from pro
##### [Version 2.10.8](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.7...v2.10.8) (2021-09-29)
- [Feat] Refactor the dashboard.
- [Feat] Add Telegram social sharing icon.
- [Fix] HomePage reverts to FrontPage if you have Orbit Fox Hestia Enhancements active and switch theme
##### [Version 2.10.7](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.6...v2.10.7) (2021-08-02)
[Fix] Widgets with repeater fields are generating errors
[Fix] Gutenberg Blocks compatibility with WP 5.8
[Fix] Fix Elementor deprecated functions
- Retire the Uptime Monitor module.
- Announce the retirement of the Gutenberg Blocks module and remove it if the module is not used.
- Retire the Analytics module if the user is not using it.
##### [Version 2.10.6](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.5...v2.10.6) (2021-05-31)
- [Fix] Replace Elementor deprecated functions
##### [Version 2.10.5](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.4...v2.10.5) (2021-05-31)
- [Fix] PHP 8 errors
- [Fix] Elementor deprecated functions
##### [Version 2.10.4](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.3...v2.10.4) (2021-03-09)
- [Fix] Translations and text-domain issues
- [Fix] Translation and text-domain issues.
##### [Version 2.10.3](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.2...v2.10.3) (2020-12-17)
[Fix] removes role selector from registration content form
[Fix] ThemeIsle icons not appearing on WebKit browsers in Gutenberg blocks
##### [Version 2.10.2](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.1...v2.10.2) (2020-12-09)
- [Fix] Fatal error on older versions of PHP
##### [Version 2.10.1](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.0...v2.10.1) (2020-12-07)
- [Feat] New ascending/descending order option for Post Type Grid Elementor widget
- [Fix] Compatibility with WP 5.6
- [Fix] Header and Footer scripts not working on the Shop page
- [Fix] Remove Google Plus from the social-sharing module
#### [Version 2.10.0](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.19...v2.10.0) (2020-10-09)
- New Custom Fonts module
##### [Version 2.9.19](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.18...v2.9.19) (2020-09-25)
* Fix elementor post grid jQuery dependencies
##### [Version 2.9.18](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.17...v2.9.18) (2020-09-21)
- [Fix] Missing FontAwesome icons when Otter Blocks plugin was active
##### [Version 2.9.17](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.16...v2.9.17) (2020-09-02)
- [Fix] Compatibility with WP 5.5
- [Fix] Installing recommended plugins not working
##### [Version 2.9.16](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.15...v2.9.16) (2020-08-12)
fix: add permission_callback for analytics module
##### [Version 2.9.15](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.14...v2.9.15) (2020-08-12)
fix: notice showing up in the editor on the new WordPress version for users with WP_DEBUG turned on
##### [Version 2.9.14](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.13...v2.9.14) (2020-08-07)
- Remove affiliate link
##### [Version 2.9.13](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.12...v2.9.13) (2020-08-04)
- Removed Starter Sites library and import process used for the Neve theme
- [Fix] Menu Icons module not working with WP 5.5
- [Fix] Empty team member widget appearing on mobile in Hestia theme
##### [Version 2.9.12](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.11...v2.9.12) (2020-07-20)
- New checkbox field in the Contact widget for both Elementor and Beaver Builder
- [Fix] Newsletter widget not taking into account the double opt-in option from Mailchimp
##### [Version 2.9.11](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.10...v2.9.11) (2020-07-10)
- Starter Sites library and import process from the Neve theme
##### [Version 2.9.10](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.9...v2.9.10) (2020-06-24)
- [Fix] JS error for some modules when the module names are translated
##### [Version 2.9.9](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.8...v2.9.9) (2020-06-05)
New Header/Footer Scripts module
##### [Version 2.9.8](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.7...v2.9.8) (2020-04-28)
- Fixed importing multiple photos and better error handling in the Mystock module
##### [Version 2.9.7](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.6...v2.9.7) (2020-04-22)
- New Hidden field in the contact form widget
- Fix Mystock Import in the Gutenberg editor
- Fix overlapping widgets names with Beaver Builder Pro version
- Fix undefined index notice in Elementor Services widget
- Upgrade FontAwesome icons to FA5 for Hestia default content
- Make inline social icons round in Hestia
- Fix inline social icons not applying on pages in Hestia
##### [Version 2.9.6](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.5...v2.9.6) (2020-04-06)
* Update compatibility with WordPress 5.4
* Sync dependencies
* Fix selective refresh for Hestia enhacements features
##### [Version 2.9.5](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.4...v2.9.5) (2020-03-30)
* Fix notice on analytics module when the codes are missing
* Update dependencies to the latest versions
##### [Version 2.9.4](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.3...v2.9.4) (2020-03-23)
* Improve FA loading in Hestia compatibility features
* Update dependencies
##### [Version 2.9.3](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.2...v2.9.3) (2020-03-05)
* Update dependencies
* Fix admin notice viewed by non-admins
##### [Version 2.9.2](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.1...v2.9.2) (2020-02-13)
* Fix issue with cookie notices closing behavior.
* Fix notice when Otter and Orbit Fox were both active.
##### [Version 2.9.1](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.0...v2.9.1) (2020-02-05)
* Fix possible error with edge case legacy module loading.
#### [Version 2.9.0](https://github.com/Codeinwp/themeisle-companion/compare/v2.8.14...v2.9.0) (2020-02-03)
* Update dependencies
* Remove legacy modules
= 2.8.14 - 2019-12-02 =
* Fix fatal error with Membership Pro
* Various bug fixes to forms and Elementor widgets
= 2.8.13 - 2019-11-18 =
* Fix dependency issues on content forms module
= 2.8.12 - 2019-11-18 =
* sync dependencies
= 2.8.11 - 2019-11-18 =
* Various improvements for Beaver and Elementor form widgets.
* Improvements to the post grid Elementor module.
* Compatibility with WordPress 5.3
= 2.8.10 - 2019-09-13 =
* Development
= 2.8.8 - 2019-09-11 =
* Fixes Constant Warning for Beaver Widgets Module
= 2.8.7 - 2019-08-13 =
* Fix error notice in menu icons
= 2.8.6 - 2019-08-12 =
* Improve script loading performance
* Fix issue with mystock import
= 2.8.5 - 2019-07-26 =
* Update Elementor content forms widgets compatiblity with the latest version.
* Various fixes for the gutenberg blocks module.
= 2.8.4 - 2019-05-23 =
* minor adjustments to the dashboard UI
* various updates to the Gutenberg blocks available
* adds compatibility with WordPress 5.2
= 2.8.3 - 2019-04-20 =
* Fixed issue with constant not being checked in Otter
* Added error handling in Backbone functions
= 2.8.2 - 2019-04-18 =
* Fix PHP notice
= 2.8.1 - 2019-04-18 =
* Fix issues with newsletter form
= 2.8.0 - 2019-04-02 =
* Fix font awesome menu icons issue in the menu builder
* Fix issue on dismiss nag info for OrbitFox post install
* Fix menu icon possible conflicts report info
* FIx undefined error on new installs for image module
* Fix issues with mystock import on certain use cases
* Remove image CDN module for new users, service will be migrated to optimole plugin
* Adds recommended plugins tab into Orbitfox settings page.
= 2.7.5 - 2019-02-02 =
* Improve compatibility with Image CDN module by disabling the feature if Optimole exits already
= 2.7.4 - 2019-02-01 =
* update Gutenberg blocks library to the latest version
* fix dashicons issue with Neve theme
* load fontawesome locally if is not already loaded
= 2.7.3 - 2018-12-12 =
* Revert Font Awesome 5 integration
= 2.7.2 - 2018-12-10 =
* Tested with WP 5.0
= 2.7.1 - 2018-12-07 =
* - Fix for Gutenberg blocks module loading
= 2.7.0 - 2018-11-26 =
* Fix small typo on the module activation button.
* Improves compatibility with Hestia Theme.
* Adds compatibility for Neve theme.
* Fix translation text for Agree button in Cookie notice.
= 2.6.4 - 2018-11-12 =
* Fix issue with elementor content forms php notice
* Add alignment options to content forms
* Security enhancements
* Performance enhancements
= 2.6.3 - 2018-10-29 =
* - Minor bug fix in Gutenberg Blocks
= 2.6.2 - 2018-10-29 =
* Adds Image Optimization and CDN module available for everyone.
* Small improvements to the Gutenberg module.
= 2.6.1 - 2018-10-10 =
* Added backward compatibility for Font Awesome 4
* Fixed issue with Elementor dequeuing Font Awesome
* Fixed issue with Gutenberg Module crashing Orbit Fox dashboard
* Fixed issue with Pie Chart causing REST API error
* Fixed z-index issue in Accordion block.
= 2.6.0 - 2018-10-08 =
* Adds Gutenberg integration with various blocks.
* Adds Font Awesome, Google maps, Notice, Sharing icons, Pie charts, Plugin Card, Pricing, Testimonial and Click to Tweet Gutenberg block and Post grid block.
= 2.5.8 - 2018-09-12 =
* Extend image optimization module for 50% of users.
* Enable safe updates for all users.
* Adds image optimization integration with Optimole.
= 2.5.7 - 2018-08-13 =
* -fixed fatal error with Elementor extra widgets
= 2.5.6 - 2018-07-26 =
* Release
= 2.5.5 - 2018-07-23 =
* Add new controls for Elementor content forms.
= 2.5.4 - 2018-07-11 =
* Fixed undefined method for old elementor versions.
= 2.5.3 - 2018-07-11 =
* Small alignment fix for menu icons module
* Added styling options for Elementor content forms
= 2.5.2 - 2018-07-06 =
* Fixes post grid pagination issue
* Fixes post grid colors not applying correctly
* Fixes Templates directory import issue
* New templates in the templates directory
* Fixes content forms placeholder not used
* Fixes for Hestia Theme enhancements module
* Fixes issue where url's were replaced with CDN url for beta users
= 2.5.1 - 2018-07-02 =
* Fix social icons saving bug.
* Fix z-index issue on policy notice.
= 2.5.0 - 2018-06-22 =
* Adds privacy policy module, allows users to set a notice for their visitors.
* Adds Image CDN and Optimization module in private BETA .
* Adds Themes Safe Updates module in private BETA.
* Adds more Elementor templates into the library.
* Improvements for Hestia enhancements module.
= 2.4.7 - 2018-05-03 =
* Add content forms for Beaver Builder
* Bug fixes and performance enhancements for Hestia
* Fix issue with plugin activation and deactivation
= 2.4.6 - 2018-04-12 =
* Add video to readme file
* Added notification about conflict with navwalker overrides
* Added safeguard for navwalker overrides
* Remove unused animation functions from Legacy Module
* Added Azera Shop, Llorix One Lite, Shop Isle themes functionality to Legacy Module
= 2.4.5 - 2018-03-29 =
* Fixed issue with duplicated widgets in Hestia theme
* Fix undefined errors in Analytics Module
* Unset monitor email field on deactivation
= 2.4.4 - 2018-03-08 =
* Fixed Analytics module error.
* UX Improvements.
= 2.4.3 - 2018-03-04 =
* Fixed Analytics module issues.
* Better UX on module activation.
= 2.4.2 - 2018-03-02 =
* Added a new Google Analytics Integration module
* Small UX improvements
= 2.4.1 - 2018-02-20 =
* Added intent confirmation for uptime monitor.
* Register site to endpoint only if we have a valid email address.
* UX improvements for module activation.
= 2.4.0 - 2018-02-16 =
* Adds a new module for uptime monitor of your website.
* Adds 4 more hooks for modules related actions.
= 2.3.1 - 2018-01-17 =
* Disabled automatic display for sharing button on pages and added an option to toggle it.
= 2.3.0 - 2018-01-15 =
* Adds 3 forms widgets for Elementor (Contact form, Newsletter, and Registration form).
* Improve menu icons copyright.
* Allows social icons on pages.
* Adds beaver widgets module active by default.
= 2.2.7 - 2017-12-21 =
* Fix for Hestia clients section default content
* Beaver Builder Widgets show only if you have beaver builder installed
* Added Screenshots desciptions
= 2.2.6 - 2017-12-19 =
* Added new Beaver Builder Widgets Module - Pricing table widget, Services widget, Posts Grid widget.
* Better user experience for the template directory.
* More native design for the template directory.
* Added three free new templates to the template directory - Path, Mocha and Ascend.
* Fixed bug with the Elementor Pricing Table widget button link.
* Fixed php notice given by the Elementor Posts Grid widget.
* Removed the useless Stats module.
= 2.2.5 - 2017-12-11 =
* Better UX for CC0 images import module.
* Improved Elementor Services Widget.
* Added new templates to the template directory.
= 2.2.4 - 2017-12-04 =
* Fixed issue with menu icons module loading.
= 2.2.3 - 2017-11-27 =
* [Hestia] Fixed issue with Team member section not opening external links in a new tab
* [Hestia] Fixed alignment issues with the front page sections
= 2.2.2 - 2017-11-24 =
* Renamed flickr api util file.
* Fixed issue with template directory preview plugin install modal.
= 2.2.1 - 2017-11-24 =
* Fixed module loading for Elementor widgets module.
= 2.2.0 - 2017-11-23 =
* - Added new Elementor Widgets module;
* - Added new Template Directory module;
* - Bug fixes for the Photos Import Module;
* - Bug fixes for the Social Sharing module backend interface;
* - Moved Orbit Fox Companion out of Tools Menu;
= 2.1.1 - 2017-11-16 =
* Adds compatibility with WordPress 4.9.
= 2.1.0 - 2017-11-08 =
* Adds custom icons menu module.
* Adds free stock images integration with mystock.photos .
= 2.0.11 - 2017-10-19 =
* Fixed alignment issue for titles in Hestia
= 2.0.10 - 2017-10-18 =
* Added selective refresh options for the Show/Hide frontpage controls in Hestia
* Make external links open in new tab for the frontpage sections in Hestia
* Added some new filters to control the number of items per row appear in the Features and Testimonials Frontpage section - http://docs.themeisle.com/article/669-how-to-add-4-feature-items-on-a-line-in-hestia
= 2.0.9 - 2017-10-17 =
* Enhanced layout for Hestia sections.
= 2.0.8 - 2017-10-11 =
* Fixed bug with URL protocols filter priority.
* Fixed bug with icons background styled by URL address.
= 2.0.7 - 2017-10-02 =
* New improved options for frontpage sections ordering/disabling in Hestia
= 2.0.6 - 2017-09-19 =
* Added selective refresh for titles options in the frontpage sections in Hestia
= 2.0.5 - 2017-09-12 =
* Added new Ribbon and Clients Bar sections in Hestia
= 2.0.4 - 2017-09-11 =
* Adds PHP minimum requirement.
* Fix for admin styles loading screen.
= 2.0.3 - 2017-08-24 =
* Improved compatibility with the new Hestia version.