Skip to content

Commit f577564

Browse files
authored
Merge pull request #901 from brainstormforce/release-candidate
Build version 1.6.43
2 parents 6602a2a + 946746b commit f577564

File tree

7 files changed

+58
-10
lines changed

7 files changed

+58
-10
lines changed

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
**Requires at least:** 4.4
66
**Requires PHP:** 7.4
77
**Tested up to:** 6.6
8-
**Stable tag:** 1.6.42
8+
**Stable tag:** 1.6.43
99
**License:** GPLv2 or later
1010
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html
1111

@@ -140,6 +140,9 @@ This same applies when you are creating your Header/Footer using this plugin.
140140

141141
## Changelog ##
142142

143+
### 1.6.43 ###
144+
- Improvement: Icons displaying correctly on frontend.
145+
143146
### 1.6.42 ###
144147
- Fix: Navigation Menu – Active color now changes correctly when moving between pages.
145148
- Fix: Page Title - The icon was showing too big, now it appears the right size.

header-footer-elementor.php

+44-2
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
* Author URI: https://www.brainstormforce.com/
88
* Text Domain: header-footer-elementor
99
* Domain Path: /languages
10-
* Version: 1.6.42
10+
* Version: 1.6.43
1111
* Elementor tested up to: 3.24
1212
* Elementor Pro tested up to: 3.24
1313
*
1414
* @package header-footer-elementor
1515
*/
1616

17-
define( 'HFE_VER', '1.6.42' );
17+
define( 'HFE_VER', '1.6.43' );
1818
define( 'HFE_FILE', __FILE__ );
1919
define( 'HFE_DIR', plugin_dir_path( __FILE__ ) );
2020
define( 'HFE_URL', plugins_url( '/', __FILE__ ) );
@@ -47,3 +47,45 @@ function hfe_init() {
4747
}
4848

4949
add_action( 'plugins_loaded', 'hfe_init' );
50+
51+
/** Function for FA5, Social Icons, Icon List */
52+
function hfe_enqueue_font_awesome() {
53+
54+
if ( class_exists( 'Elementor\Plugin' ) ) {
55+
56+
wp_enqueue_style(
57+
'hfe-icons-list',
58+
plugins_url( '/elementor/assets/css/widget-icon-list.min.css', 'elementor' ),
59+
[],
60+
'3.24.3'
61+
);
62+
wp_enqueue_style(
63+
'hfe-social-icons',
64+
plugins_url( '/elementor/assets/css/widget-social-icons.min.css', 'elementor' ),
65+
[],
66+
'3.24.0'
67+
);
68+
wp_enqueue_style(
69+
'hfe-social-share-icons-brands',
70+
plugins_url( '/elementor/assets/lib/font-awesome/css/brands.css', 'elementor' ),
71+
[],
72+
'5.15.3'
73+
);
74+
75+
wp_enqueue_style(
76+
'hfe-social-share-icons-fontawesome',
77+
plugins_url( '/elementor/assets/lib/font-awesome/css/fontawesome.css', 'elementor' ),
78+
[],
79+
'5.15.3'
80+
);
81+
wp_enqueue_style(
82+
'hfe-nav-menu-icons',
83+
plugins_url( '/elementor/assets/lib/font-awesome/css/solid.css', 'elementor' ),
84+
[],
85+
'5.15.3'
86+
);
87+
88+
89+
}
90+
}
91+
add_action( 'wp_enqueue_scripts', 'hfe_enqueue_font_awesome', 20 );

languages/header-footer-elementor.pot

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# This file is distributed under the same license as the Elementor Header & Footer Builder package.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Elementor Header & Footer Builder 1.6.42\n"
5+
"Project-Id-Version: Elementor Header & Footer Builder 1.6.43\n"
66
"Report-Msgid-Bugs-To: "
77
"https://wordpress.org/support/plugin/header-footer-elementor\n"
8-
"POT-Creation-Date: 2024-09-16 08:49:07+00:00\n"
8+
"POT-Creation-Date: 2024-10-14 06:10:59+00:00\n"
99
"MIME-Version: 1.0\n"
1010
"Content-Type: text/plain; charset=utf-8\n"
1111
"Content-Transfer-Encoding: 8bit\n"

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "header-footer-elementor",
3-
"version": "1.6.42",
3+
"version": "1.6.43",
44
"main": "Gruntfile.js",
55
"author": "Nikhil Chavan",
66
"devDependencies": {

readme.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Donate link: https://www.paypal.me/BrainstormForce
55
Requires at least: 4.4
66
Requires PHP: 7.4
77
Tested up to: 6.6
8-
Stable tag: 1.6.42
8+
Stable tag: 1.6.43
99
License: GPLv2 or later
1010
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1111

@@ -140,6 +140,9 @@ This same applies when you are creating your Header/Footer using this plugin.
140140

141141
== Changelog ==
142142

143+
= 1.6.43 =
144+
- Improvement: Icons displaying correctly on frontend.
145+
143146
= 1.6.42 =
144147
- Fix: Navigation Menu – Active color now changes correctly when moving between pages.
145148
- Fix: Page Title - The icon was showing too big, now it appears the right size.

tests/php/stubs/hfe-stubs.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2878,13 +2878,13 @@ function _is_elementor_installed() {
28782878
* Author URI: https://www.brainstormforce.com/
28792879
* Text Domain: header-footer-elementor
28802880
* Domain Path: /languages
2881-
* Version: 1.6.42
2881+
* Version: 1.6.43
28822882
* Elementor tested up to: 3.23
28832883
* Elementor Pro tested up to: 3.23
28842884
*
28852885
* @package header-footer-elementor
28862886
*/
2887-
\define( 'HFE_VER', '1.6.42' );
2887+
\define( 'HFE_VER', '1.6.43' );
28882888
\define( 'HFE_FILE', __FILE__ );
28892889
\define( 'HFE_DIR', \plugin_dir_path( __FILE__ ) );
28902890
\define( 'HFE_URL', \plugins_url( '/', __FILE__ ) );

0 commit comments

Comments
 (0)