327, 'single_image_width' => 245, 'product_grid' => array( 'default_rows' => 3, 'min_rows' => 1, 'default_columns' => 4, 'min_columns' => 1, 'max_columns' => 6, ), ) ); add_theme_support( 'wc-product-gallery-zoom' ); add_theme_support( 'wc-product-gallery-lightbox' ); add_theme_support( 'wc-product-gallery-slider' ); } add_action( 'after_setup_theme', 'bike_shop_woocommerce_setup' ); /** * WooCommerce specific scripts & stylesheets. * * @return void */ function bike_shop_woocommerce_scripts() { wp_enqueue_style( 'bike-shop-woocommerce-style', get_template_directory_uri() . '/woocommerce/woocommerce.css', array(), bike_shop_version ); $font_path = WC()->plugin_url() . '/assets/fonts/'; $inline_font = '@font-face { font-family: "star"; src: url("' . $font_path . 'star.eot"); src: url("' . $font_path . 'star.eot?#iefix") format("embedded-opentype"), url("' . $font_path . 'star.woff") format("woff"), url("' . $font_path . 'star.ttf") format("truetype"), url("' . $font_path . 'star.svg#star") format("svg"); font-weight: normal; font-style: normal; }'; wp_add_inline_style( 'bike-shop-woocommerce-style', $inline_font ); } add_action( 'wp_enqueue_scripts', 'bike_shop_woocommerce_scripts' ); /** * Disable the default WooCommerce stylesheet. * * Removing the default WooCommerce stylesheet and enqueing your own will * protect you during WooCommerce core updates. * * @link https://docs.woocommerce.com/document/disable-the-default-stylesheet/ */ //add_filter( 'woocommerce_enqueue_styles', '__return_empty_array' ); /** * Add 'woocommerce-active' class to the body tag. * * @param array $classes CSS classes applied to the body tag. * @return array $classes modified to include 'woocommerce-active' class. */ function bike_shop_woocommerce_active_body_class( $classes ) { $classes[] = 'woocommerce-active'; return $classes; } add_filter( 'body_class', 'bike_shop_woocommerce_active_body_class' ); /** * Related Products Args. * * @param array $args related products args. * @return array $args related products args. */ function bike_shop_woocommerce_related_products_args( $args ) { $defaults = array( 'posts_per_page' => 3, 'columns' => 3, ); $args = wp_parse_args( $defaults, $args ); return $args; } add_filter( 'woocommerce_output_related_products_args', 'bike_shop_woocommerce_related_products_args' ); /** * Required functions for woocommerce or its extensions. * * @package Bike_Shop */ if ( ! function_exists( 'bike_shop_get_advanced_product_search' ) ) : /** * Woocommerce Product search * */ function bike_shop_get_advanced_product_search() { $args = array( 'number' => '', 'orderby' => 'name', 'order' => 'ASC', 'hide_empty' => true ); $product_categories = get_terms( 'product_cat', $args ); $categories_show = ''; $check = ''; if ( is_search() ) { if ( isset( $_GET['term'] ) && $_GET['term'] != '' ) { $check = isset( $_GET['term'] ) ? sanitize_text_field( wp_unslash( $_GET['term'] ) ) : ''; } } $checked = ''; $categories_show .= ''; echo $form = '
'; return $form; } endif; /** * Sample implementation of the WooCommerce Mini Cart. * * You can add the WooCommerce Mini Cart to header.php like so ... * */ if ( ! function_exists( 'bike_shop_woocommerce_cart_link_fragment' ) ) { /** * Cart Fragments. * * Ensure cart contents update when products are added to the cart via AJAX. * * @param array $fragments Fragments to refresh via AJAX. * @return array Fragments to refresh via AJAX. */ function bike_shop_woocommerce_cart_link_fragment( $fragments ) { ob_start(); bike_shop_woocommerce_cart_link(); $fragments['a.cart-contents'] = ob_get_clean(); return $fragments; } } add_filter( 'woocommerce_add_to_cart_fragments', 'bike_shop_woocommerce_cart_link_fragment' ); if ( ! function_exists( 'bike_shop_woocommerce_cart_link' ) ) { /** * Cart Link. * * Displayed a link to the cart including the number of items present and the cart total. * * @return void */ function bike_shop_woocommerce_cart_link() { ?> cart->get_cart_contents_count(); ?>