';
// We don't escape output here, so user can enter any HTML
echo do_shortcode( $text_html ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo '
';
}
if ( ! $is_mobile ) {
echo '';
}
}
}
/**
* Top bar
*/
if ( ! function_exists( 'amela_top_bar' ) ) {
function amela_top_bar() {
if ( class_exists( 'woocommerce' ) ) {
if ( is_checkout() && get_theme_mod( 'amela_settings_woocommerce_distraction_free_checkout', false ) ) {
return;
}
}
$message = get_theme_mod( 'amela_settings_top_bar_message', esc_html__( 'Free Shipping & Returns On All US Orders', 'amela' ) );
$url = get_theme_mod( 'amela_settings_top_bar_url', '#' );
$customizer = get_theme_mod( 'amela_settings_top_bar_show', false );
$meta = get_post_meta( get_the_ID(), '_amela_top_bar_hide', true );
if ( is_archive() || is_404() || is_search() || is_home() ) {
$meta = '';
}
if ( $customizer && $meta != '1' ) {
?>