get_settings_for_display( 'button_icon_position' ); $use_icon = $this->get_settings_for_display( 'add_button_icon' ); $button_url = $this->get_settings_for_display( 'back_side_button_link' ); if ( empty( $button_url ) ) { return false; } if ( is_array( $button_url ) && empty( $button_url['url'] ) ) { return false; } $this->add_render_attribute( 'url', 'class', array( 'elementor-button', 'elementor-size-md', 'jet-animated-box__button', 'jet-animated-box__button--back', 'jet-animated-box__button--icon-' . $position, ) ); if ( is_array( $button_url ) ) { $this->add_render_attribute( 'url', 'href', $button_url['url'] ); if ( $button_url['is_external'] ) { $this->add_render_attribute( 'url', 'target', '_blank' ); } if ( ! empty( $button_url['nofollow'] ) ) { $this->add_render_attribute( 'url', 'rel', 'nofollow' ); } } else { $this->add_render_attribute( 'url', 'href', $button_url ); } ?> get_render_attribute_string( 'url' ); ?>>__html( 'back_side_button_text', '%s' ); if ( filter_var( $use_icon, FILTER_VALIDATE_BOOLEAN ) ) { echo $this->__icon( 'button_icon', '%s' ); } ?>