300, 'single_image_width' => 600, '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' ); register_sidebar( array( 'name' => esc_html__( 'Woocommerce Sidebar', 'startup-shop' ), 'id' => 'woocommerce-sidebar', 'description' => esc_html__( 'Add widgets here.', 'startup-shop' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'after_setup_theme', 'startup_shop_woocommerce_setup' ); /** * WooCommerce specific scripts & stylesheets. * * @return void */ function startup_shop_woocommerce_scripts() { wp_enqueue_style( 'startup-shop-woocommerce-core', get_template_directory_uri() . '/assets/css/woocommerce-core.css', array(), _FATEST_SHOP_VERSION ); wp_enqueue_style( 'startup-shop-woocommerce-style', get_template_directory_uri() . '/woocommerce.css', array(), _FATEST_SHOP_VERSION ); $font_path = esc_url( WC()->plugin_url() . '/assets/fonts/' ); $inline_font = '@font-face { font-family: "star"; src: url("' . esc_url( $font_path ) . 'star.eot"); src: url("' . esc_url( $font_path ) . 'star.eot?#iefix") format("embedded-opentype"), url("' . esc_url( $font_path ) . 'star.woff") format("woff"), url("' . esc_url( $font_path ) . 'star.ttf") format("truetype"), url("' . esc_url( $font_path ) . 'star.svg#star") format("svg"); font-weight: normal; font-style: normal; }'; wp_add_inline_style( 'startup-shop-woocommerce-style', $inline_font ); wp_enqueue_script( 'startup-shop-woocommerce', get_theme_file_uri( '/assets/js/startup-shop-woocommerce.js' ) , 0, '1.1', true ); } add_action( 'wp_enqueue_scripts', 'startup_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 startup_shop_woocommerce_active_body_class( $classes ) { $classes[] = 'woocommerce-active'; return $classes; } add_filter( 'body_class', 'startup_shop_woocommerce_active_body_class' ); /** * Related Products Args. * * @param array $args related products args. * @return array $args related products args. */ function startup_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', 'startup_shop_woocommerce_related_products_args' ); add_filter( 'woocommerce_upsell_display_args', 'startup_shop_woocommerce_related_products_args' ); add_filter( 'woocommerce_cross_sells_columns', 'startup_shop_change_cross_sells_columns' ); add_filter( 'woocommerce_product_additional_information_heading', '__return_false' ); add_filter( 'woocommerce_product_description_heading', '__return_false' ); function startup_shop_change_cross_sells_columns( $columns ) { return 3; } /** * Remove default WooCommerce wrapper. */ remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 ); remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 ); if ( ! function_exists( 'startup_shop_woocommerce_wrapper_before' ) ) { /** * Before Content. * * Wraps all WooCommerce content in wrappers which match the theme markup. * * @return void */ function startup_shop_woocommerce_wrapper_before() { /** * Hook - startup_shop_container_wrap_start * * @hooked startup_shop_container_wrap_start - 5 */ $layout = ( is_shop() || is_product_category() ) ? 'sidebar-content': 'no-sidebar'; do_action( 'startup_shop_container_wrap_start', esc_attr( $layout ) ); } } add_action( 'woocommerce_before_main_content', 'startup_shop_woocommerce_wrapper_before' ); if ( ! function_exists( 'startup_shop_woocommerce_wrapper_after' ) ) { /** * After Content. * * Closes the wrapping divs. * * @return void */ function startup_shop_woocommerce_wrapper_after() { /** * Hook - startup_shop_container_wrap_end * * @hooked container_wrap_end - 999 */ $layout = ( is_shop() || is_product_category() ) ? 'sidebar-content': 'no-sidebar'; do_action( 'startup_shop_container_wrap_end', esc_attr( $layout ) ); } } add_action( 'woocommerce_after_main_content', 'startup_shop_woocommerce_wrapper_after' ); /** * Sample implementation of the WooCommerce Mini Cart. * * You can add the WooCommerce Mini Cart to header.php like so ... * */ if ( ! function_exists( 'startup_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 startup_shop_woocommerce_cart_link_fragment( $fragments ) { ob_start(); startup_shop_woocommerce_cart_link(); $fragments['a.cart-contents'] = ob_get_clean(); return $fragments; } } add_filter( 'woocommerce_add_to_cart_fragments', 'startup_shop_woocommerce_cart_link_fragment' ); if ( ! function_exists( 'startup_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 startup_shop_woocommerce_cart_link() { if( class_exists('ATA_WC_Smart_Popup_Cart') || class_exists('ATA_WC_Smart_Popup_Cart_PRO') ) :?> cart->get_cart_contents_count(), 'startup-shop' ), WC()->cart->get_cart_contents_count() ); ?> '; } add_action('woocommerce_before_shop_loop','startup_shop_toolbar_start',20); } /** * Add Custom Result Counter. */ function startup_shop_result_count() { get_template_part( 'woocommerce/result-count' ); } add_action('woocommerce_before_shop_loop','startup_shop_result_count',30); if ( ! function_exists( 'startup_shop_header_toolbar_end' ) ) { /** * Insert the opening anchor tag for products in the loop. */ function startup_shop_header_toolbar_end() { echo '
'; } add_action('woocommerce_before_shop_loop','startup_shop_header_toolbar_end',30); } if ( ! function_exists( 'startup_shop_loop_shop_per_page' ) ) : /** * Returns correct posts per page for the shop * * @since 1.0.0 */ function startup_shop_loop_shop_per_page() { $posts_per_page = ( isset( $_GET['products-per-page'] ) ) ? sanitize_text_field( wp_unslash( $_GET['products-per-page'] ) ) : get_theme_mod( 'shopstore_woo_shop_posts_per_page',12 ); if ( $posts_per_page == 'all' ) { $posts_per_page = wp_count_posts( 'product' )->publish; } return $posts_per_page; } add_filter( 'loop_shop_per_page', 'startup_shop_loop_shop_per_page', 20 ); endif; /*------------------------------------*/ //PRODUCT LOOP /*------------------------------------*/ /** * Default loop columns on product archives. * * @return integer products per row. */ function startup_shop_woocommerce_loop_columns() { return 3; } add_filter( 'loop_shop_columns', 'startup_shop_woocommerce_loop_columns' ); if ( ! function_exists( 'startup_shop_loop_product_thumbnail' ) ) { /** * Get the product thumbnail for the loop. */ function startup_shop_loop_product_thumbnail() { global $product; $attachment_ids = $product->get_gallery_image_ids(); if( isset( $attachment_ids[0] ) && $attachment_ids[0] != "" ) { $img_tag = array( 'class' => 'woo-entry-image-secondary', 'alt' => get_the_title(), ); echo '
'. wp_kses_post(woocommerce_get_product_thumbnail()) . wp_get_attachment_image( $attachment_ids[0], 'shop_catalog', '', $img_tag ) .'
'; }else{ echo '
'.wp_kses_post(woocommerce_get_product_thumbnail()).'
'; } echo ''; } function startup_shop_loop_product_thumbnail_before(){ echo '
'; } add_action( 'woocommerce_before_shop_loop_item_title','startup_shop_loop_product_thumbnail_before',5 ); add_action( 'woocommerce_before_shop_loop_item_title','woocommerce_template_loop_rating',10 ); //add_action( 'woocommerce_before_shop_loop_item_title','woocommerce_show_product_loop_sale_flash',20 ); add_action( 'woocommerce_before_shop_loop_item_title','woocommerce_template_loop_product_link_open',30 ); add_action( 'woocommerce_before_shop_loop_item_title','startup_shop_loop_product_thumbnail',40 ); add_action( 'woocommerce_before_shop_loop_item_title','woocommerce_template_loop_product_link_close',50 ); add_action( 'woocommerce_before_shop_loop_item_title','startup_shop_product_loop_swatches',80 ); add_action( 'woocommerce_before_shop_loop_item_title','startup_shop_loop_product_thumbnail_after',99 ); function startup_shop_loop_product_thumbnail_after(){ echo '
'; } } if ( ! function_exists( 'startup_shop_loop_content_before' ) ) { /** * end the product content wrap */ function startup_shop_loop_content_before() { echo '
'; } add_action( 'woocommerce_shop_loop_item_title', 'startup_shop_loop_content_before', 5 ); } if ( ! function_exists( 'startup_shop_product_loop_actions' ) ) { /** * end the product content wrap */ function startup_shop_product_loop_actions() { echo ''; } //add_action( 'woocommerce_shop_loop_item_title', 'startup_shop_product_loop_actions', 10 ); } if ( ! function_exists( 'startup_shop_loop_item_title' ) ) { /** * Show the product title in the product loop. By default this is an h4. */ function startup_shop_loop_item_title() { echo '

' . esc_html( get_the_title() ) . '

'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } add_action( 'woocommerce_shop_loop_item_title', 'startup_shop_loop_item_title', 40 ); } if ( ! function_exists( 'startup_shop_loop_content_after' ) ) { /** * end the product content wrap */ function startup_shop_loop_content_after() { echo '
'; } add_action( 'woocommerce_after_shop_loop_item', 'startup_shop_loop_content_after', 999); } if ( ! function_exists( 'startup_shop_before_quantity_input_field' ) ) { /** * before quantity. * * * @return $html */ function startup_shop_before_quantity_input_field() { echo ''; } add_action( 'woocommerce_before_quantity_input_field','startup_shop_before_quantity_input_field',10); } if ( ! function_exists( 'startup_shop_after_quantity_input_field' ) ) { /** * after quantity. * * * @return $html */ function startup_shop_after_quantity_input_field() { echo ''; } add_action( 'woocommerce_after_quantity_input_field','startup_shop_after_quantity_input_field',10); } function startup_shop_product_loop_swatches(){ if( !class_exists('ATA_WC_Variation_Swatches') ) return; global $product; if( $product->is_type( 'variable' )) { $attributes = $product->get_variation_attributes(); $variations_json = wp_json_encode( $product->get_available_variations() ); $variations_attr = function_exists( 'wc_esc_json' ) ? wc_esc_json( $variations_json ) : _wp_specialchars( $variations_json, ENT_QUOTES, 'UTF-8', true ); ?>
$options ) : if( $attribute_name == 'pa_color' ){ wc_dropdown_variation_attribute_options( array( 'options' => $options, 'attribute' => $attribute_name, 'product' => $product, ) ); } endforeach; endif; ?>