cart instanceof \WC_Cart; } } if ( ! function_exists( 'storefront_before_content' ) ) { /** * Before Content * Wraps all WooCommerce content in wrappers which match the theme markup * * @since 1.0.0 * @return void */ function storefront_before_content() { ?>
cart->get_cart_subtotal() ); ?> cart->get_cart_contents_count(), 'storefront' ), WC()->cart->get_cart_contents_count() ) ); ?>
'; } } if ( ! function_exists( 'storefront_sorting_wrapper_close' ) ) { /** * Sorting wrapper close * * @since 1.4.3 * @return void */ function storefront_sorting_wrapper_close() { echo ''; } } if ( ! function_exists( 'storefront_product_columns_wrapper' ) ) { /** * Product columns wrapper * * @since 2.2.0 * @return void */ function storefront_product_columns_wrapper() { $columns = storefront_loop_columns(); echo '
'; } } if ( ! function_exists( 'storefront_loop_columns' ) ) { /** * Default loop columns on product archives * * @return integer products per row * @since 1.0.0 */ function storefront_loop_columns() { $columns = 3; // 3 products per row if ( function_exists( 'wc_get_default_products_per_row' ) ) { $columns = wc_get_default_products_per_row(); } return apply_filters( 'storefront_loop_columns', $columns ); } } if ( ! function_exists( 'storefront_product_columns_wrapper_close' ) ) { /** * Product columns wrapper close * * @since 2.2.0 * @return void */ function storefront_product_columns_wrapper_close() { echo '
'; } } if ( ! function_exists( 'storefront_shop_messages' ) ) { /** * Storefront shop messages * * @since 1.4.4 * @uses storefront_do_shortcode */ function storefront_shop_messages() { if ( ! is_checkout() ) { echo wp_kses_post( storefront_do_shortcode( 'woocommerce_messages' ) ); } } } if ( ! function_exists( 'storefront_woocommerce_pagination' ) ) { /** * Storefront WooCommerce Pagination * WooCommerce disables the product pagination inside the woocommerce_product_subcategories() function * but since Storefront adds pagination before that function is excuted we need a separate function to * determine whether or not to display the pagination. * * @since 1.4.4 */ function storefront_woocommerce_pagination() { if ( woocommerce_products_will_display() ) { woocommerce_pagination(); } } } if ( ! function_exists( 'storefront_product_categories' ) ) { /** * Display Product Categories * Hooked into the `homepage` action in the homepage template * * @since 1.0.0 * @param array $args the product section args. * @return void */ function storefront_product_categories( $args ) { $args = apply_filters( 'storefront_product_categories_args', array( 'limit' => 3, 'columns' => 3, 'child_categories' => 0, 'orderby' => 'menu_order', 'title' => __( 'Shop by Category', 'storefront' ), ) ); $shortcode_content = storefront_do_shortcode( 'product_categories', apply_filters( 'storefront_product_categories_shortcode_args', array( 'number' => intval( $args['limit'] ), 'columns' => intval( $args['columns'] ), 'orderby' => esc_attr( $args['orderby'] ), 'parent' => esc_attr( $args['child_categories'] ), ) ) ); /** * Only display the section if the shortcode returns product categories */ if ( false !== strpos( $shortcode_content, 'product-category' ) ) { echo '
'; do_action( 'storefront_homepage_before_product_categories' ); echo '

' . wp_kses_post( $args['title'] ) . '

'; do_action( 'storefront_homepage_after_product_categories_title' ); echo $shortcode_content; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped do_action( 'storefront_homepage_after_product_categories' ); echo '
'; } } } if ( ! function_exists( 'storefront_recent_products' ) ) { /** * Display Recent Products * Hooked into the `homepage` action in the homepage template * * @since 1.0.0 * @param array $args the product section args. * @return void */ function storefront_recent_products( $args ) { $args = apply_filters( 'storefront_recent_products_args', array( 'limit' => 4, 'columns' => 4, 'orderby' => 'date', 'order' => 'desc', 'title' => __( 'New In', 'storefront' ), ) ); $shortcode_content = storefront_do_shortcode( 'products', apply_filters( 'storefront_recent_products_shortcode_args', array( 'orderby' => esc_attr( $args['orderby'] ), 'order' => esc_attr( $args['order'] ), 'per_page' => intval( $args['limit'] ), 'columns' => intval( $args['columns'] ), ) ) ); /** * Only display the section if the shortcode returns products */ if ( false !== strpos( $shortcode_content, 'product' ) ) { echo '
'; do_action( 'storefront_homepage_before_recent_products' ); echo '

' . wp_kses_post( $args['title'] ) . '

'; do_action( 'storefront_homepage_after_recent_products_title' ); echo $shortcode_content; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped do_action( 'storefront_homepage_after_recent_products' ); echo '
'; } } } if ( ! function_exists( 'storefront_featured_products' ) ) { /** * Display Featured Products * Hooked into the `homepage` action in the homepage template * * @since 1.0.0 * @param array $args the product section args. * @return void */ function storefront_featured_products( $args ) { $args = apply_filters( 'storefront_featured_products_args', array( 'limit' => 4, 'columns' => 4, 'orderby' => 'date', 'order' => 'desc', 'visibility' => 'featured', 'title' => __( 'We Recommend', 'storefront' ), ) ); $shortcode_content = storefront_do_shortcode( 'products', apply_filters( 'storefront_featured_products_shortcode_args', array( 'per_page' => intval( $args['limit'] ), 'columns' => intval( $args['columns'] ), 'orderby' => esc_attr( $args['orderby'] ), 'order' => esc_attr( $args['order'] ), 'visibility' => esc_attr( $args['visibility'] ), ) ) ); /** * Only display the section if the shortcode returns products */ if ( false !== strpos( $shortcode_content, 'product' ) ) { echo '
'; do_action( 'storefront_homepage_before_featured_products' ); echo '

' . wp_kses_post( $args['title'] ) . '

'; do_action( 'storefront_homepage_after_featured_products_title' ); echo $shortcode_content; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped do_action( 'storefront_homepage_after_featured_products' ); echo '
'; } } } if ( ! function_exists( 'storefront_popular_products' ) ) { /** * Display Popular Products * Hooked into the `homepage` action in the homepage template * * @since 1.0.0 * @param array $args the product section args. * @return void */ function storefront_popular_products( $args ) { $args = apply_filters( 'storefront_popular_products_args', array( 'limit' => 4, 'columns' => 4, 'orderby' => 'rating', 'order' => 'desc', 'title' => __( 'Fan Favorites', 'storefront' ), ) ); $shortcode_content = storefront_do_shortcode( 'products', apply_filters( 'storefront_popular_products_shortcode_args', array( 'per_page' => intval( $args['limit'] ), 'columns' => intval( $args['columns'] ), 'orderby' => esc_attr( $args['orderby'] ), 'order' => esc_attr( $args['order'] ), ) ) ); /** * Only display the section if the shortcode returns products */ if ( false !== strpos( $shortcode_content, 'product' ) ) { echo '
'; do_action( 'storefront_homepage_before_popular_products' ); echo '

' . wp_kses_post( $args['title'] ) . '

'; do_action( 'storefront_homepage_after_popular_products_title' ); echo $shortcode_content; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped do_action( 'storefront_homepage_after_popular_products' ); echo '
'; } } } if ( ! function_exists( 'storefront_on_sale_products' ) ) { /** * Display On Sale Products * Hooked into the `homepage` action in the homepage template * * @param array $args the product section args. * @since 1.0.0 * @return void */ function storefront_on_sale_products( $args ) { $args = apply_filters( 'storefront_on_sale_products_args', array( 'limit' => 4, 'columns' => 4, 'orderby' => 'date', 'order' => 'desc', 'on_sale' => 'true', 'title' => __( 'On Sale', 'storefront' ), ) ); $shortcode_content = storefront_do_shortcode( 'products', apply_filters( 'storefront_on_sale_products_shortcode_args', array( 'per_page' => intval( $args['limit'] ), 'columns' => intval( $args['columns'] ), 'orderby' => esc_attr( $args['orderby'] ), 'order' => esc_attr( $args['order'] ), 'on_sale' => esc_attr( $args['on_sale'] ), ) ) ); /** * Only display the section if the shortcode returns products */ if ( false !== strpos( $shortcode_content, 'product' ) ) { echo '
'; do_action( 'storefront_homepage_before_on_sale_products' ); echo '

' . wp_kses_post( $args['title'] ) . '

'; do_action( 'storefront_homepage_after_on_sale_products_title' ); echo $shortcode_content; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped do_action( 'storefront_homepage_after_on_sale_products' ); echo '
'; } } } if ( ! function_exists( 'storefront_best_selling_products' ) ) { /** * Display Best Selling Products * Hooked into the `homepage` action in the homepage template * * @since 2.0.0 * @param array $args the product section args. * @return void */ function storefront_best_selling_products( $args ) { $args = apply_filters( 'storefront_best_selling_products_args', array( 'limit' => 4, 'columns' => 4, 'orderby' => 'popularity', 'order' => 'desc', 'title' => esc_attr__( 'Best Sellers', 'storefront' ), ) ); $shortcode_content = storefront_do_shortcode( 'products', apply_filters( 'storefront_best_selling_products_shortcode_args', array( 'per_page' => intval( $args['limit'] ), 'columns' => intval( $args['columns'] ), 'orderby' => esc_attr( $args['orderby'] ), 'order' => esc_attr( $args['order'] ), ) ) ); /** * Only display the section if the shortcode returns products */ if ( false !== strpos( $shortcode_content, 'product' ) ) { echo '
'; do_action( 'storefront_homepage_before_best_selling_products' ); echo '

' . wp_kses_post( $args['title'] ) . '

'; do_action( 'storefront_homepage_after_best_selling_products_title' ); echo $shortcode_content; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped do_action( 'storefront_homepage_after_best_selling_products' ); echo '
'; } } } if ( ! function_exists( 'storefront_promoted_products' ) ) { /** * Featured and On-Sale Products * Check for featured products then on-sale products and use the appropiate shortcode. * If neither exist, it can fallback to show recently added products. * * @since 1.5.1 * @param integer $per_page total products to display. * @param integer $columns columns to arrange products in to. * @param boolean $recent_fallback Should the function display recent products as a fallback when there are no featured or on-sale products?. * @uses storefront_is_woocommerce_activated() * @uses wc_get_featured_product_ids() * @uses wc_get_product_ids_on_sale() * @uses storefront_do_shortcode() * @return void */ function storefront_promoted_products( $per_page = '2', $columns = '2', $recent_fallback = true ) { if ( storefront_is_woocommerce_activated() ) { if ( wc_get_featured_product_ids() ) { echo '

' . esc_html__( 'Featured Products', 'storefront' ) . '

'; // phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped echo storefront_do_shortcode( 'featured_products', array( 'per_page' => $per_page, 'columns' => $columns, ) ); // phpcs:enable } elseif ( wc_get_product_ids_on_sale() ) { echo '

' . esc_html__( 'On Sale Now', 'storefront' ) . '

'; // phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped echo storefront_do_shortcode( 'sale_products', array( 'per_page' => $per_page, 'columns' => $columns, ) ); // phpcs:enable } elseif ( $recent_fallback ) { echo '

' . esc_html__( 'New In Store', 'storefront' ) . '

'; // phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped echo storefront_do_shortcode( 'recent_products', array( 'per_page' => $per_page, 'columns' => $columns, ) ); // phpcs:enable } } } } if ( ! function_exists( 'storefront_handheld_footer_bar' ) ) { /** * Display a menu intended for use on handheld devices * * @since 2.0.0 */ function storefront_handheld_footer_bar() { $links = array( 'my-account' => array( 'priority' => 10, 'callback' => 'storefront_handheld_footer_bar_account_link', ), 'search' => array( 'priority' => 20, 'callback' => 'storefront_handheld_footer_bar_search', ), 'cart' => array( 'priority' => 30, 'callback' => 'storefront_handheld_footer_bar_cart_link', ), ); if ( did_action( 'woocommerce_blocks_enqueue_cart_block_scripts_after' ) || did_action( 'woocommerce_blocks_enqueue_checkout_block_scripts_after' ) ) { return; } if ( wc_get_page_id( 'myaccount' ) === -1 ) { unset( $links['my-account'] ); } if ( wc_get_page_id( 'cart' ) === -1 ) { unset( $links['cart'] ); } $links = apply_filters( 'storefront_handheld_footer_bar_links', $links ); ?>
    $link ) : ?>
' . esc_attr__( 'Search', 'storefront' ) . ''; storefront_product_search(); } } if ( ! function_exists( 'storefront_handheld_footer_bar_cart_link' ) ) { /** * The cart callback function for the handheld footer bar * * @since 2.0.0 */ function storefront_handheld_footer_bar_cart_link() { if ( ! storefront_woo_cart_available() ) { return; } ?> cart->get_cart_contents_count() ); ?> ' . esc_attr__( 'My Account', 'storefront' ) . ''; } } if ( ! function_exists( 'storefront_single_product_pagination' ) ) { /** * Single Product Pagination * * @since 2.3.0 */ function storefront_single_product_pagination() { if ( class_exists( 'Storefront_Product_Pagination' ) || true !== get_theme_mod( 'storefront_product_pagination' ) ) { return; } // Show only products in the same category? $in_same_term = apply_filters( 'storefront_single_product_pagination_same_category', true ); $excluded_terms = apply_filters( 'storefront_single_product_pagination_excluded_terms', '' ); $taxonomy = apply_filters( 'storefront_single_product_pagination_taxonomy', 'product_cat' ); $previous_product = storefront_get_previous_product( $in_same_term, $excluded_terms, $taxonomy ); $next_product = storefront_get_next_product( $in_same_term, $excluded_terms, $taxonomy ); if ( ! $previous_product && ! $next_product ) { return; } ?>
get_image() ); ?> get_name() ); ?> get_image() ); ?> get_name() ); ?>
is_purchasable() && $product->is_in_stock() ) { $show = true; } elseif ( $product->is_type( 'external' ) ) { $show = true; } if ( ! $show ) { return; } $params = apply_filters( 'storefront_sticky_add_to_cart_params', array( 'trigger_class' => 'entry-summary', ) ); wp_localize_script( 'storefront-sticky-add-to-cart', 'storefront_sticky_add_to_cart_params', $params ); wp_enqueue_script( 'storefront-sticky-add-to-cart' ); ?>
get_price_html() ); ?> get_average_rating() ) ); ?>
add_to_cart_text() ); ?>
6, 'columns' => 4, 'orderby' => 'name', 'show_empty' => false, 'title' => __( 'Shop by Brand', 'storefront' ), ) ); $shortcode_content = storefront_do_shortcode( 'product_brand_thumbnails', apply_filters( 'storefront_woocommerce_brands_shortcode_args', array( 'number' => absint( $args['number'] ), 'columns' => absint( $args['columns'] ), 'orderby' => esc_attr( $args['orderby'] ), 'show_empty' => (bool) $args['show_empty'], ) ) ); echo '
'; do_action( 'storefront_homepage_before_woocommerce_brands' ); echo '

' . wp_kses_post( $args['title'] ) . '

'; do_action( 'storefront_homepage_after_woocommerce_brands_title' ); echo $shortcode_content; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped do_action( 'storefront_homepage_after_woocommerce_brands' ); echo '
'; } } if ( ! function_exists( 'storefront_woocommerce_brands_archive' ) ) { /** * Display brand image on brand archives * Requires WooCommerce Brands. * * @since 2.3.0 * @link https://woocommerce.com/products/brands/ * @uses is_tax() * @uses wp_kses_post() * @uses get_brand_thumbnail_image() * @uses get_queried_object() * @return void */ function storefront_woocommerce_brands_archive() { if ( is_tax( 'product_brand' ) ) { echo wp_kses_post( get_brand_thumbnail_image( get_queried_object() ) ); } } } if ( ! function_exists( 'storefront_woocommerce_brands_single' ) ) { /** * Output product brand image for use on single product pages * Requires WooCommerce Brands. * * @since 2.3.0 * @link https://woocommerce.com/products/brands/ * @uses storefront_do_shortcode() * @uses wp_kses_post() * @return void */ function storefront_woocommerce_brands_single() { $brand = storefront_do_shortcode( 'product_brand', array( 'class' => '', ) ); if ( empty( $brand ) ) { return; } ?>