Runner's Fuel Protein & Chia Seed Balls – Camp Makery – healthy, health foods, clean eating, runners
Permalink
Switch branches/tags
add/skip-activate-if-connected-to-jetpack
add/twentyseventeen-support
cart-session-class
concept/edit-product-ui
discount-calculation
feature-13189
feature/api-keys-crud
feature/block-frontend
feature/display-menu
feature/import-merges
feature/menu-redesign
feature/product-category-select
feature/product-custom-tables-supporting-changes
feature/products-block
fix-12955
fix-13671
fix-13677
fix-15563
fix-helper-multilicense
fix/checkout-box
fix/gallery-array-to-string-conversion
fix/get-downloads-order-by
fix/jetpack-activation-setup-wizard
fix/jetpack-tos-acceptance
fix/list-of-wc-tables
fix/long-table-names
fix/meta-notice
fix/missing-drag-handles
fix/no-js-login-checkout
fix/products-block-unique-keys
fix/theme-compat
fix/wizard-class
fix/14317
fix/14985
fix/15274
fix/15617
fix/16496-extension-permissions
fix/17047
fix/17582
fix/17969
fix/17970
fix/18023
fix/18545
fix/18608-add-missing-action-settings-save
fix/18736-show-product-id
fix/18842-external-images-fix
fix/18856-search-pending-products
gh-pages
hyperlinks-mention-of-woocommerce-in-email-footer
improve/cart-tests
master
payment-request-api
product-data-store
products-block-specific-select
release/3.2
release/3.3
revert-17396-fix/17379
try/hosted-nux
try/new-wizard-shipping-page
tweak/issue-16604
tweak/rounding-precision-totals
ui/gallery-markup
update/add-ext-object-cache-to-system-status
update/category-help-text
update/data-store-meta-input
update/improve-get-downloads
update/setup-wizard-paypal-currency-check
update/setup-wizard-smart-defaults-with-jetpack-backup
update/use-post-author-for-customer-id
update/wc-tracker-data
update/woo-services-presentation
update/15780-locking-mechinism
update/16366
update/16912
update/17252
update/17555
update/17795
update/17908
update/18864
wip/shopify-mappings
Nothing to show
v2.2.3
v2.2.2
v2.2.1
v2.2.0-RC1
v2.2-beta-3
v2.2-beta-2
v2.2-beta-1
v2.1.12
v2.1.11
v2.1.10
v2.1.9
v2.1.8
v2.1.7
v2.1.6
v2.1.5
v2.1.4
v2.1.3
v2.1.2
v2.1.1
v2.1.0
v2.1.0-beta-3
v2.1.0-beta-2
v2.1.0-beta-1
v2.1.0-RC2
v2.1.0-RC1
v2.0.20
v2.0.19
v2.0.18
v2.0.17
v2.0.16
v2.0.15
v2.0.14
v2.0.13
v2.0.12
v2.0.11
v2.0.10
v2.0.9
v2.0.8
v2.0.7
v2.0.6
v2.0.5
v2.0.4
v2.0.3
v2.0.2
v2.0.1
v2.0.0
v2.0.0-beta3
v2.0.0-beta2
v2.0.0-beta1
v2.0.0-RC3
v2.0.0-RC2
v2.0.0-RC1
v2.0-beta-0
v1.6.6
v1.6.5.2
v1.6.5.1
v1.6.5
v1.6.4
v1.6.3
v1.6.2
v1.6.1
v1.6.0
v1.6-beta-1
v1.5.8
v1.5.7.1
v1.5.7
v1.5.6
v1.5.5
v1.5.4
v1.5.3
v1.5.2.1
v1.5.2
v1.5.1
v1.5
v1.4.4
v1.4.3
v1.4.2
v1.4.1
v1.4
v1.3.2
v1.3.1
v1.3
v1.2.4
v1.2.3
v1.2.2
v1.2.1
v1.2
v1.1.3
v1.1.2
v1.1.1
v1.1
v1.0.3
v1.0.2
v1.0.1
v1.0
3.3.1
3.3.1-rc.1
3.3.0
3.3.0-rc.2
3.3.0-rc.1
Nothing to show
8b16bdc
Nov 7, 2017
Users who have contributed to this file
<?php | |
/** | |
* The template for displaying product search form | |
* | |
* This template can be overridden by copying it to yourtheme/woocommerce/product-searchform.php. | |
* | |
* HOWEVER, on occasion WooCommerce will need to update template files and you | |
* (the theme developer) will need to copy the new files to your theme to | |
* maintain compatibility. We try to do this as little as possible, but it does | |
* happen. When this occurs the version of the template file will be bumped and | |
* the readme will list any important changes. | |
* | |
* @see https://docs.woocommerce.com/document/template-structure/ | |
* @author WooThemes | |
* @package WooCommerce/Templates | |
* @version 3.3.0 | |
*/ | |
if ( ! defined( 'ABSPATH' ) ) { | |
exit; | |
} | |
?> | |
<form role="search" method="get" class="woocommerce-product-search" action="<?php echo esc_url( home_url( '/' ) ); ?>"> | |
<label class="screen-reader-text" for="woocommerce-product-search-field-<?php echo isset( $index ) ? absint( $index ) : 0; ?>"><?php esc_html_e( 'Search for:', 'woocommerce' ); ?></label> | |
<input type="search" id="woocommerce-product-search-field-<?php echo isset( $index ) ? absint( $index ) : 0; ?>" class="search-field" placeholder="<?php echo esc_attr__( 'Search products…', 'woocommerce' ); ?>" value="<?php echo get_search_query(); ?>" name="s" /> | |
<button type="submit" value="<?php echo esc_attr_x( 'Search', 'submit button', 'woocommerce' ); ?>"><?php echo esc_html_x( 'Search', 'submit button', 'woocommerce' ); ?></button> | |
<input type="hidden" name="post_type" value="product" /> | |
</form> |