Updated the markup for input groups according to BS 4 changes
This commit is contained in:
parent
4468772592
commit
4a89b37500
|
@ -11,7 +11,7 @@
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
<input class="field form-control" id="s" name="s" type="text"
|
<input class="field form-control" id="s" name="s" type="text"
|
||||||
placeholder="<?php esc_attr_e( 'Search …', 'understrap' ); ?>" value="<?php the_search_query(); ?>">
|
placeholder="<?php esc_attr_e( 'Search …', 'understrap' ); ?>" value="<?php the_search_query(); ?>">
|
||||||
<span class="input-group-btn">
|
<span class="input-group-append">
|
||||||
<input class="submit btn btn-primary" id="searchsubmit" name="submit" type="submit"
|
<input class="submit btn btn-primary" id="searchsubmit" name="submit" type="submit"
|
||||||
value="<?php esc_attr_e( 'Search', 'understrap' ); ?>">
|
value="<?php esc_attr_e( 'Search', 'understrap' ); ?>">
|
||||||
</span>
|
</span>
|
||||||
|
|
|
@ -26,7 +26,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
||||||
|
|
||||||
<input type="search" id="woocommerce-product-search-field-<?php echo isset( $index ) ? absint( $index ) : 0; ?>" class="search-field field form-control" placeholder="<?php echo esc_attr__( 'Search products…', 'understrap' ); ?>" value="<?php echo get_search_query(); ?>" name="s" />
|
<input type="search" id="woocommerce-product-search-field-<?php echo isset( $index ) ? absint( $index ) : 0; ?>" class="search-field field form-control" placeholder="<?php echo esc_attr__( 'Search products…', 'understrap' ); ?>" value="<?php echo get_search_query(); ?>" name="s" />
|
||||||
<input type="hidden" name="post_type" value="product" />
|
<input type="hidden" name="post_type" value="product" />
|
||||||
<span class="input-group-btn">
|
<span class="input-group-append">
|
||||||
<input class="submit btn btn-primary" type="submit" value="<?php echo esc_attr_x( 'Search', 'submit button', 'understrap' ); ?>" />
|
<input class="submit btn btn-primary" type="submit" value="<?php echo esc_attr_x( 'Search', 'submit button', 'understrap' ); ?>" />
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
Reference in New Issue