Skip to content

Commit

Permalink
Merge pull request #747 from brainstormforce/logo-fix
Browse files Browse the repository at this point in the history
Version 1.6.21
  • Loading branch information
sushmak02 authored Dec 4, 2023
2 parents c276411 + f04a39e commit 11f3f58
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 8 deletions.
5 changes: 4 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.4.1
**Stable tag:** 1.6.20
**Stable tag:** 1.6.21
**License:** GPLv2 or later
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html

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

## Changelog ##

### 1.6.21 ###
- Fix: Site Logo - Width and height settings not applying to the logo.

### 1.6.20 ###
- Fix: Flyout menu not appearing correctly.

Expand Down
4 changes: 2 additions & 2 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.20
* Version: 1.6.21
* Elementor tested up to: 3.18
* Elementor Pro tested up to: 3.18
*
* @package header-footer-elementor
*/

define( 'HFE_VER', '1.6.20' );
define( 'HFE_VER', '1.6.21' );
define( 'HFE_FILE', __FILE__ );
define( 'HFE_DIR', plugin_dir_path( __FILE__ ) );
define( 'HFE_URL', plugins_url( '/', __FILE__ ) );
Expand Down
2 changes: 1 addition & 1 deletion inc/widgets-manager/widgets/class-cart.php
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ protected function render() {
<div class="hfe-cart-menu-wrap-default">
<?php if ( null !== WC()->cart ) { ?>
<span class="hfe-cart-count">
<?php echo esc_html( WC()->cart->get_cart_contents_count() ); ?>
<?php echo ( WC()->cart->get_cart_contents_count() ); ?>
</span>
<?php } ?>
</div>
Expand Down
2 changes: 1 addition & 1 deletion inc/widgets-manager/widgets/class-retina.php
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ protected function render() {
}

?>
<div <?php echo esc_attr( $this->get_render_attribute_string( 'wrapper' ) ); ?>>
<div <?php echo ( $this->get_render_attribute_string( 'wrapper' ) ); ?>>
<?php if ( $has_caption ) : ?>
<figure class="wp-caption">
<?php endif; ?>
Expand Down
2 changes: 1 addition & 1 deletion inc/widgets-manager/widgets/class-site-logo.php
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@ protected function render() {
$class = 'elementor-clickable';
}
?>
<div <?php echo esc_attr( $this->get_render_attribute_string( 'wrapper' ) ); ?>>
<div <?php echo ( $this->get_render_attribute_string( 'wrapper' ) ); ?>>
<?php if ( $has_caption ) : ?>
<figure class="wp-caption">
<?php endif; ?>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "header-footer-elementor",
"version": "1.6.20",
"version": "1.6.21",
"main": "Gruntfile.js",
"author": "Nikhil Chavan",
"devDependencies": {
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Donate link: https://www.paypal.me/BrainstormForce
Requires at least: 4.4
Requires PHP: 5.4
Tested up to: 6.4.1
Stable tag: 1.6.20
Stable tag: 1.6.21
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

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

== Changelog ==

= 1.6.21 =
- Fix: Site Logo - Width and height settings not applying to the logo.

= 1.6.20 =
- Fix: Flyout menu not appearing correctly.

Expand Down

0 comments on commit 11f3f58

Please sign in to comment.