YITH WooCommerce Ajax Search integrazione Kallyas
<?php
/**
* YITH WooCommerce Ajax Search template
*
* @author Yithemes
* @package YITH WooCommerce Ajax Search Premium
* @version 1.2.3
*/
if ( !defined( 'YITH_WCAS' ) ) {
exit;
} // Exit if accessed directly
wp_enqueue_script( 'yith_wcas_frontend' );
$research_post_type = ( get_option('yith_wcas_default_research') ) ? get_option('yith_wcas_default_research') : 'product';
?>
<div class="yith-ajaxsearchform-container ">
<form role="search" method="get" id="yith-ajaxsearchform" action="<?php echo esc_url( home_url( '/' ) ) ?>">
<div class="yith-ajaxsearchform-container">
<div class="yith-ajaxsearchform-select">
<?php
if ( get_option( 'yith_wcas_show_search_list' ) == 'yes' ):
$selected_search = ( isset( $_REQUEST['post_type'] ) ) ? $_REQUEST['post_type'] : $research_post_type; ?>
<select class="yit_wcas_post_type selectbox" id="yit_wcas_post_type" name="post_type">
<option value="product" <?php selected( 'product', $selected_search ) ?>><?php _e( 'Products', 'yith-woocommerce-ajax-search' ) ?></option>
<option value="any" <?php selected( 'any', $selected_search ) ?>><?php _e( 'All', 'yith-woocommerce-ajax-search' ) ?></option>
</select>
<?php else: ?>
<input type="hidden" name="post_type" class="yit_wcas_post_type" id="yit_wcas_post_type" value="<?php echo $research_post_type ?>" />
<?php endif; ?>
<?php
if ( get_option( 'yith_wcas_show_category_list' ) == 'yes' ):
$product_categories = yith_wcas_get_shop_categories( get_option( 'yith_wcas_show_category_list_all' ) == 'all' );
$selected_category = ( isset( $_REQUEST['product_cat'] ) ) ? $_REQUEST['product_cat'] : '';
if ( !empty( $product_categories ) ) : ?>
<select class="search_categories selectbox" id="search_categories" name="product_cat">
<option value="" <?php selected( '', $selected_category ) ?>><?php _e( 'All', 'yith-woocommerce-ajax-search' ) ?></option>
<?php foreach ( $product_categories as $cat ): ?>
<option value="<?php echo $cat->slug ?>" <?php selected( $cat->slug, $selected_category ) ?>><?php echo $cat->name ?></option>
<?php endforeach; ?>
</select>
<?php endif ?>
<?php endif ?>
</div>
<div class="search-navigation headsearch--inp">
<label class="screen-reader-text" for="yith-s"><?php _e( 'Search for:', 'yith-woocommerce-ajax-search' ) ?></label>
<input type="search"
value="<?php echo get_search_query() ?>"
name="s"
id="yith-s"
class="yith-s"
placeholder="<?php echo get_option( 'yith_wcas_search_input_label' ) ?>"
data-append-to=".search-navigation"
data-loader-icon="<?php echo str_replace( '"', '', apply_filters( 'yith_wcas_ajax_search_icon', '' ) ) ?>"
data-min-chars="<?php echo get_option( 'yith_wcas_min_chars' ); ?>" />
<button type="submit" id="yith-searchsubmit" class="gensearch__submit glyphicon glyphicon-search" ><?php echo get_option( 'yith_wcas_search_submit_label' ) ?></button>
</div>
<?php do_action( 'wpml_add_language_form_field' ); ?>
</div>
</form>
</div>
.yith-ajaxsearchform-container input#yith-s {
border: 1px solid #cacaca;
border-radius: 8px;
padding: 3px 5px;
min-width: 400px;
background-color: #e6e6e6;
outline:none;
}
.yith-ajaxsearchform-container {
margin-top: 5px;
}
.button#yith-searchsubmit {
top: 15px;
}
.search-navigation {
position:relative;
}
.yith-ajaxsearchform-container label.screen-reader-text {
display: none;
}
<?php
if( defined('YITH_WCAS_PREMIUM') ){
add_action( 'zn_head__top_right', 'add_yith_wcas', 5 );
function add_yith_wcas(){
echo do_shortcode('[yith_woocommerce_ajax_search]');
}
}