Editing: header.php
<!DOCTYPE html> <html <?php language_attributes(); ?> class="no-js"> <head> <meta charset="<?php bloginfo( 'charset' ); ?>"> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> <link rel="profile" href="http://gmpg.org/xfn/11"> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"> <?php if ( get_theme_mod( 'listing_archive', '' ) === get_the_ID() || get_theme_mod( 'rental_datepick', '' ) === get_the_ID() || ( function_exists( 'is_shop' ) && is_shop() ) || is_category() ) : $page_id = get_the_ID(); if ( ( function_exists( 'is_shop' ) && is_shop() ) ) { $page_id = get_option( 'woocommerce_shop_page_id' ); } if ( is_category() ) { $page_id = get_option( 'page_for_posts' ); } ?> <link rel="canonical" href="<?php echo esc_url( get_the_permalink( $page_id ) ); ?>" /> <?php endif; ?> <?php wp_head(); ?> </head> <?php $class = ''; if ( apply_filters( 'stm_is_dealer_two', false ) ) { $show_title_box = get_post_meta( get_queried_object_id(), 'title', true ); if ( ( 'show' === $show_title_box || is_front_page() || is_tag() || is_category() || is_archive() || is_date() ) && ! is_post_type_archive( 'listings' ) ) { $class = 'header-position-absolute'; } $transparent_header = get_post_meta( get_queried_object_id(), 'transparent_header', true ); if ( empty( $transparent_header ) ) { $class .= ' listing-nontransparent-header'; } if ( ! empty( $transparent_header ) ) { $class .= ' header-position-absolute'; } } $boxed = apply_filters( 'stm_me_get_nuxy_mod', false, 'site_boxed' ); if ( $boxed ) { $boxed_background = ! empty( apply_filters( 'stm_me_get_nuxy_img_src', '', 'custom_bg_image' ) ) ? apply_filters( 'stm_me_get_nuxy_img_src', '', 'custom_bg_image' ) : get_template_directory_uri() . apply_filters( 'stm_me_get_nuxy_mod', false, 'bg_image' ); } ?> <body <?php body_class(); ?> <?php if ( $boxed ) : ?> style="background-image: url( '<?php echo esc_url( $boxed_background ); ?>' )" <?php endif; ?> ontouchstart=""> <?php wp_body_open(); ?> <?php do_action( 'motors_before_header' ); ?> <div id="wrapper"> <?php $underconstruction_mode = apply_filters( 'stm_me_get_nuxy_mod', '', 'coming_soon_page' ); $underconstruction_page_id = apply_filters( 'stm_me_get_nuxy_mod', '', 'coming_soon_page_dropdown' ); if ( $underconstruction_mode && $underconstruction_page_id && ! is_excluded_request() ) { return; } if ( ! apply_filters( 'stm_hide_old_headers', false ) ) : $header_layout = stm_get_header_layout(); $top_bar_layout = ''; if ( 'boats' === $header_layout || 'car_dealer_two' === $header_layout ) { $top_bar_layout = '-boats'; } if ( 'service' === apply_filters( 'stm_theme_demo_layout', '' ) ) { $header_layout = 'service'; } if ( ! apply_filters( 'stm_is_auto_parts', true ) ) { if ( 'boats' === $header_layout || 'car_dealer_two' === $header_layout ) { ?> <div id="stm-boats-header" class="<?php echo esc_attr( $class ); ?>"> <?php } if ( ! is_404() && ! is_page_template( 'coming-soon.php' ) ) { if ( 'listing_five' === $header_layout ) { get_template_part( 'partials/header/header-classified-five/header' ); } elseif ( 'ev_dealer' === $header_layout ) { get_template_part( 'partials/header/header-ev-dealer/header' ); } else { get_template_part( 'partials/top', 'bar' . $top_bar_layout ); ?> <div id="header"> <?php get_template_part( 'partials/header/header-' . $header_layout ); ?> </div> <!-- id header --> <?php } } elseif ( is_page_template( 'coming-soon.php' ) ) { get_template_part( 'partials/header/header-coming', 'soon' ); } else { get_template_part( 'partials/header/header', '404' ); } ?> <?php if ( ( ! is_404() && ! is_page_template( 'coming-soon.php' ) ) && 'boats' === $header_layout || 'car_dealer_two' === $header_layout ) { ?> </div> <?php get_template_part( 'partials/header/header-boats-mobile' ); } ?> <?php } else { if ( is_404() ) { get_template_part( 'partials/header/header', '404' ); } elseif ( is_page_template( 'coming-soon.php' ) ) { get_template_part( 'partials/header/header-coming', 'soon' ); } else { do_action( 'stm_hb', array( 'header' => 'stm_hb_settings' ) ); } } if ( apply_filters( 'stm_is_auto_parts', false ) && ! is_plugin_active( 'pearl-header-builder/pearl_header_builder.php' ) ) { get_template_part( 'partials/top-bar-auto-parts' ); get_template_part( 'partials/header/header', 'auto-parts' ); } if ( apply_filters( 'stm_is_service', false ) ) { get_template_part( 'header', 'service' ); } ?> <div id="main"> <?php else : if ( is_404() ) { get_template_part( 'partials/header/header', '404' ); } else { do_action( 'stm_motors_header' ); } endif; wp_reset_postdata(); ?>
Save
Back