-
Notifications
You must be signed in to change notification settings - Fork 1
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
Footer [TMZ-61] #33
Footer [TMZ-61] #33
Conversation
…title # Conflicts: # modules/template-parts/classes/render/widget-header-render.php # modules/template-parts/scss/breakpoints.scss # modules/template-parts/scss/variables.scss # modules/template-parts/widgets/header.php
…title # Conflicts: # modules/template-parts/scss/hello-plus-header.scss
use wp native function for site logo / title/ url
# Conflicts: # modules/template-parts/assets/scss/hello-plus-header.scss # modules/template-parts/classes/render/widget-header-render.php # modules/template-parts/widgets/header.php
# Conflicts: # modules/template-parts/module.php # webpack.config.js
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
minor changes, see suggestions
'class' => $footer_icons_classnames, | ||
] ); | ||
?> | ||
<div <?php echo $this->widget->print_render_attribute_string( 'icons' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no need to echo, the method already does that
<div <?php echo $this->widget->print_render_attribute_string( 'icons' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>> | |
<div <?php $this->widget->print_render_attribute_string( 'icons' ); ?>> |
?> | ||
|
||
<?php if ( ! empty( $text ) ) : ?> | ||
<a <?php echo $this->widget->print_render_attribute_string( 'icon-' . $key ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<a <?php echo $this->widget->print_render_attribute_string( 'icon-' . $key ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>> | |
<a <?php $this->widget->print_render_attribute_string( 'icon-' . $key ); ?>> |
] ); | ||
?> | ||
<div class="ehp-footer__contact-container"> | ||
<div <?php echo $this->widget->print_render_attribute_string( 'contact' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<div <?php echo $this->widget->print_render_attribute_string( 'contact' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>> | |
<div <?php $this->widget->print_render_attribute_string( 'contact' ); ?>> |
https://elementor.atlassian.net/browse/TMZ-61