Skip to content

Commit

Permalink
Merge pull request #728 from brainstormforce/release-candidate
Browse files Browse the repository at this point in the history
Build: Release PR rc-to-master for v1.6.17
  • Loading branch information
sushmak02 authored Oct 19, 2023
2 parents 4b396c7 + 8eb5dc3 commit 33e4350
Show file tree
Hide file tree
Showing 7 changed files with 319 additions and 176 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
**Requires at least:** 4.4
**Requires PHP:** 5.4
**Tested up to:** 6.3
**Stable tag:** 1.6.16
**Stable tag:** 1.6.17

**License:** GPLv2 or later
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -141,6 +141,10 @@ This same applies when you are creating your Header/Footer using this plugin.

## Changelog ##

### 1.6.17 ###
- Improvement: Compatibility with latest Elementor and Elementor Pro 3.17 version.
- Fix: Site Logo - Added an alt text for the default logo.

### 1.6.16 ###
- Compatibility with latest Elementor and Elementor Pro 3.16 version.
- Compatibility with PHP 8.1 version.
Expand Down
8 changes: 4 additions & 4 deletions header-footer-elementor.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
* Author URI: https://www.brainstormforce.com/
* Text Domain: header-footer-elementor
* Domain Path: /languages
* Version: 1.6.16
* Elementor tested up to: 3.16
* Elementor Pro tested up to: 3.16
* Version: 1.6.17
* Elementor tested up to: 3.17
* Elementor Pro tested up to: 3.17
*
* @package header-footer-elementor
*/

define( 'HFE_VER', '1.6.16' );
define( 'HFE_VER', '1.6.17' );
define( 'HFE_FILE', __FILE__ );
define( 'HFE_DIR', plugin_dir_path( __FILE__ ) );
define( 'HFE_URL', plugins_url( '/', __FILE__ ) );
Expand Down
6 changes: 5 additions & 1 deletion inc/widgets-manager/widgets/class-site-logo.php
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,11 @@ protected function render() {
?>
<div class="hfe-site-logo-set">
<div class="hfe-site-logo-container">
<img class="hfe-site-logo-img <?php echo esc_attr( $class_animation ); ?>" src="<?php echo esc_url( $image_url ); ?>" alt="<?php echo esc_attr( Control_Media::get_image_alt( $settings['custom_image'] ) ); ?>"/>
<?php
$alt_text = Control_Media::get_image_alt( $settings['custom_image'] );
$alt_text = empty( $alt_text ) ? 'default-logo' : esc_attr( $alt_text );
?>
<img class="hfe-site-logo-img <?php echo esc_attr( $class_animation ); ?>" src="<?php echo esc_url( $image_url ); ?>" alt="<?php echo esc_attr( $alt_text ); ?>"/>
</div>
</div>
<?php if ( $link ) : ?>
Expand Down
4 changes: 2 additions & 2 deletions languages/header-footer-elementor.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# This file is distributed under the same license as the Elementor Header & Footer Builder package.
msgid ""
msgstr ""
"Project-Id-Version: Elementor Header & Footer Builder 1.6.16\n"
"Project-Id-Version: Elementor Header & Footer Builder 1.6.17\n"
"Report-Msgid-Bugs-To: "
"https://wordpress.org/support/plugin/header-footer-elementor\n"
"POT-Creation-Date: 2023-09-11 10:06:03+00:00\n"
"POT-Creation-Date: 2023-10-19 05:13:14+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
Expand Down
Loading

0 comments on commit 33e4350

Please sign in to comment.