Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EPS-316: Elementor 3.18 version compatibility test with HFE #737

Merged
merged 4 commits into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ This same applies when you are creating your Header/Footer using this plugin.
## Changelog ##

### 1.6.17.1 ###
- Improvement: Compatibility with latest Elementor and Elementor Pro 3.18 version.
- Improvement: Compatibility with WordPress VIP Go rules.

### 1.6.17 ###
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.18
* Elementor tested up to: 3.17
* Elementor Pro tested up to: 3.17
* Version: 1.6.17
* Elementor tested up to: 3.18
* Elementor Pro tested up to: 3.18
*
* @package header-footer-elementor
*/

define( 'HFE_VER', '1.6.18' );
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
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 @@ -756,7 +756,7 @@ protected function render() {
$class = 'elementor-non-clickable';
}
?>
<a data-elementor-open-lightbox="<?php echo esc_attr( $settings['open_lightbox'] ); ?>" class='<?php echo esc_attr( $class ); ?>' <?php echo esc_attr( $this->get_render_attribute_string( 'link' ) ); ?>>
<a data-elementor-open-lightbox="<?php echo esc_attr( $settings['open_lightbox'] ); ?>" class='<?php echo esc_attr( $class ); ?>' <?php echo wp_kses_post( $this->get_render_attribute_string( 'link' ) ); ?>>
<?php endif; ?>
<?php
if ( empty( $site_image ) ) {
Expand Down
1 change: 1 addition & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ This same applies when you are creating your Header/Footer using this plugin.
== Changelog ==

= 1.6.17.1 =
- Improvement: Compatibility with latest Elementor and Elementor Pro 3.18 version.
- Improvement: Compatibility with WordPress VIP Go rules.

= 1.6.17 =
Expand Down