File: /home/wwwprimemarka/public_html/wp-content/themes/Zephyr/framework/templates/elements/search.php
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' );
/**
* Output search element
*
* @var $text string Placeholder Text
* @var $layout string Layout: 'simple' / 'modern' / 'fulwidth' / 'fullscreen'
* @var $width int Field width
* @var $design_options array
* @var $product_search bool: whether to search for WooCommerce products only
* @var $id string
*/
$classes = ' layout_' . $layout;
if ( isset( $design_options ) AND isset( $design_options['hide_for_sticky'] ) AND $design_options['hide_for_sticky'] ) {
$classes .= ' hide-for-sticky';
}
if ( isset( $design_options ) AND isset( $design_options['hide_for_not-sticky'] ) AND $design_options['hide_for_not-sticky'] ) {
$classes .= ' hide-for-not-sticky';
}
if ( isset( $id ) AND ! empty( $id ) ) {
$classes .= ' ush_' . str_replace( ':', '_', $id );
}
$output = '<div class="w-search' . $classes . '">';
if ( $layout == 'fullscreen' ) {
$output .= '<div class="w-search-background"></div>';
}
$output .= '<div class="w-search-form">';
$output .= '<form class="w-search-form-h" autocomplete="off" action="' . esc_attr( home_url( '/' ) ) . '" method="get">';
$output .= '<div class="w-search-form-field">';
$output .= '<input type="text" name="s" id="us_form_search_s" placeholder="' . esc_attr( $text ) . '" aria-label="' . esc_attr( $text ) . '"/>';
if ( ! empty( $product_search ) AND $product_search ) {
$output .= '<input type="hidden" name="post_type" value="product" />';
}
$output .= '<span class="w-form-row-field-bar"></span>';
$output .= '</div>';
if ( $layout == 'simple' ) {
$output .= '<button class="w-search-form-btn" type="submit"><span>' . us_translate( 'Search' ) . '</span></button>';
}
// Language code
if ( defined( 'ICL_LANGUAGE_CODE' ) AND ICL_LANGUAGE_CODE != '' ) {
$output .= '<input type="hidden" name="lang" value="' . esc_attr( ICL_LANGUAGE_CODE ) . '" />';
}
$output .= '<div class="w-search-close"></div></form></div>';
$output .= '<a class="w-search-open" href="javascript:void(0);" aria-label="' . us_translate( 'Search' ) . '"></a></div>';
echo $output;