'; }, 1 ); add_action( 'woocommerce_before_shop_loop_item_title', function() { echo '
'; }, 11 ); add_action( 'woocommerce_after_shop_loop_item', function() { echo '
'; }, PHP_INT_MAX ); // Categories add_filter( 'subcategory_archive_thumbnail_size', function(){ return 'botiga-big'; } ); /** * Hook 'botiga_wc_loop_image_wrap_extra_class' * * @since 1.0.0 */ add_action( 'woocommerce_before_subcategory', function() use ($loop_image_wrap_extra_class) { echo '
'; }, 1 ); add_action( 'woocommerce_before_subcategory_title', function() { echo '
'; }, 11 ); add_action( 'woocommerce_after_subcategory', function() { echo '
'; }, PHP_INT_MAX ); } if ( in_array( $layout, array( 'product-grid', 'product-masonry' ) ) ) { $shop_woocommerce_catalog_columns_desktop = get_theme_mod( 'shop_woocommerce_catalog_columns_desktop', 4 ); if( $shop_woocommerce_catalog_columns_desktop === 2 ) { add_filter( 'single_product_archive_thumbnail_size', function(){ return 'botiga-large'; } ); add_filter( 'subcategory_archive_thumbnail_size', function(){ return 'botiga-large'; } ); add_filter( 'woocommerce_get_image_size_botiga-large', function( $size ){ $size[ 'width' ] = 920; return $size; } ); } if( $shop_woocommerce_catalog_columns_desktop === 1 ) { add_filter( 'single_product_archive_thumbnail_size', function(){ return 'botiga-extra-large'; } ); add_filter( 'subcategory_archive_thumbnail_size', function(){ return 'botiga-extra-large'; } ); add_filter( 'woocommerce_get_image_size_botiga-extra-large', function( $size ){ $size[ 'width' ] = 1140; return $size; } ); } } } /** * Loop product structure */ //Move link close tag remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 ); add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_link_close', 12 ); //Wrap loop image if ( in_array( $layout, array( 'product-grid', 'product-masonry' ) ) || is_product() || ( $layout === 'product-list' && ! is_shop() && ! is_product_category() && ! is_product_tag() && ! is_product_taxonomy() ) ) { /** * Hook 'botiga_wc_loop_image_wrap_extra_class' * * @since 1.0.0 */ add_action( 'woocommerce_before_shop_loop_item_title', function() use ($loop_image_wrap_extra_class) { echo '
'; }, 9 ); add_action( 'woocommerce_before_shop_loop_item_title', function() { echo '
'; }, 11 ); } if ( in_array( $layout, array( 'product-grid', 'product-masonry' ) ) ) { //Move button inside image wrap if ( 'layout4' === $button_layout && 'layout3' !== $quick_view_layout || 'layout3' === $button_layout && 'layout2' !== $quick_view_layout ) { remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart' ); add_action( 'woocommerce_before_shop_loop_item_title', function() { botiga_wrap_loop_button_start(); woocommerce_template_loop_add_to_cart(); echo '
'; } ); } } elseif ( 'layout4' === $button_layout && 'layout3' !== $quick_view_layout || 'layout3' === $button_layout && 'layout2' !== $quick_view_layout ) { //Move button inside image wrap remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart' ); add_action( 'woocommerce_before_shop_loop_item_title', function() { botiga_wrap_loop_button_start(); woocommerce_template_loop_add_to_cart(); echo ''; } ); } //Remove product title, rating, price remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title' ); remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price' ); //Add elements from sortable option add_action( 'woocommerce_after_shop_loop_item', 'botiga_loop_product_structure', 9 ); //Wrap loop button if ( 'layout4' !== $button_layout ) { add_action( 'woocommerce_after_shop_loop_item', 'botiga_wrap_loop_button_start', 9 ); add_action( 'woocommerce_after_shop_loop_item', function() { echo ''; }, 11 ); } //Remove button if( 'layout1' === $button_layout ) { remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart' ); } //Quick view button & add to cart button if ( ( 'layout4' === $button_layout && 'layout3' === $quick_view_layout ) || ( 'layout3' === $button_layout && 'layout2' === $quick_view_layout ) ) { remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart' ); add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_add_to_cart', 10 ); } //Quick view and wishlist buttons if ( is_shop() || is_product_category() || is_product_tag() || is_product() || botiga_page_has_woo_blocks() || botiga_page_has_woo_shortcode() || is_cart() || is_404() || is_product_taxonomy() ) { if( 'layout1' !== $quick_view_layout || ( $wishlist_enable && 'layout1' !== $wishlist_layout ) ) { remove_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open' ); remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close' ); add_action( 'woocommerce_before_shop_loop_item_title', 'botiga_woocommerce_template_loop_product_link_open', 9 ); add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_link_close', 11 ); } if( 'layout1' !== $quick_view_layout ) { add_action( 'woocommerce_before_shop_loop_item_title', 'botiga_quick_view_button', 10 ); //Quick view popup add_action( 'wp_body_open', 'botiga_quick_view_popup' ); // Do not include on single product pages if ( current_theme_supports( 'wc-product-gallery-lightbox' ) && false === is_product() ) { add_action( 'botiga_footer_after', function(){ $has_search_popular_products = get_theme_mod( 'shop_search_enable_popular_products', 0 ) ? true : false; if ( is_search() && ! $has_search_popular_products ) { return; } wc_get_template( 'single-product/photoswipe.php' ); } ); } } if( $wishlist_enable && 'layout1' !== $wishlist_layout ) { add_action( 'woocommerce_before_shop_loop_item_title', 'botiga_wishlist_button', 10 ); } } $shop_cart_show_cross_sell = get_theme_mod( 'shop_cart_show_cross_sell', 1 ); if( $shop_cart_show_cross_sell && 'layout1' !== $quick_view_layout ) { //Quick view popup add_action( 'wp_body_open', 'botiga_quick_view_popup' ); } // Add to cart button text add_filter( 'woocommerce_product_add_to_cart_text', 'botiga_add_to_cart_text', 10, 2); } add_action( 'wp', 'botiga_product_card_hooks' ); /** * Loop add to cart */ function botiga_filter_loop_add_to_cart( $button, $product, $args ) { global $product; $button_layout = get_theme_mod( 'shop_product_add_to_cart_layout', 'layout3' ); $args['attributes'] = array( 'title' => $product->add_to_cart_text(), ); if ( 'layout4' !== $button_layout ) { $button = str_replace( 'href=', 'title="' . $product->add_to_cart_description() . '" href=', $button ); return $button; } if ( $product->is_type( 'simple' ) ) { $text = '' . botiga_get_svg_icon( 'icon-cart', false ) . ''; } else { $text = '' . botiga_get_svg_icon( 'icon-eye', false ) . ''; } $button = sprintf( '%s', esc_url( $product->add_to_cart_url() ), esc_attr( isset( $args['quantity'] ) ? $args['quantity'] : 1 ), esc_attr( isset( $args['class'] ) ? $args['class'] : 'button' ), isset( $args['attributes'] ) ? wc_implode_html_attributes( $args['attributes'] ) : '', $text ); return $button; } add_filter( 'woocommerce_loop_add_to_cart_link', 'botiga_filter_loop_add_to_cart', 10, 3 ); /** * Check if page has woocommece GB blocks */ function botiga_page_has_woo_blocks() { global $post; $result = false; if ( $post ) { if ( isset( $post->post_content ) && strpos( $post->post_content, 'woocommerce/' ) ) { $result = true; } } /** * Hook 'botiga_page_has_woo_blocks' to allow filtering the page whether a page has WooCommerce blocks. * * @param bool $result Whether the page has a WooCommerce block. * @param string $post_content string The content of the post. * * @since 2.3.4 */ return apply_filters( 'botiga_page_has_woo_blocks', $result, $post ? $post->post_content : '' ); } /** * Check if page has woocommece shortcode */ function botiga_page_has_woo_shortcode() { global $post; $shortcodes = array( 'products', 'product_page', 'latest_arrivals', // third-party shortcode ); $result = false; if ( $post ) { if ( isset( $post->post_content ) ) { foreach ( $shortcodes as $shortcode ) { if ( has_shortcode( $post->post_content, $shortcode ) ) { $result = true; break; } } } } /** * Hook 'botiga_page_has_woo_shortcode' to allow filtering the page whether a page has the defined shortcodes. * * @param bool $result Whether the page has a WooCommerce shortcode. * @param string $post_content string The content of the post. * * @since 2.3.4 */ return apply_filters( 'botiga_page_has_woo_shortcode', $result, $post ? $post->post_content : '' ); } /** * Wrap loop button */ function botiga_wrap_loop_button_start() { $loop_button_wrap_classes = array( 'loop-button-wrap' ); $button_layout = get_theme_mod( 'shop_product_add_to_cart_layout', 'layout3' ); $loop_button_wrap_classes[] = 'button-' . $button_layout; $loop_button_wrap_classes[] = get_theme_mod( 'shop_product_add_to_cart_button_width', 'auto' ) === 'auto' ? 'button-width-auto' : 'button-width-full'; /** * Hook 'botiga_loop_button_wrap_classes' * * @since 1.0.0 */ echo '
'; } /** * Loop product structure */ function botiga_loop_product_structure() { $elements = get_theme_mod( 'shop_card_elements', botiga_get_default_shop_archive_card_elements() ); $layout = get_theme_mod( 'shop_product_card_layout', 'layout1' ); /** * Hook 'botiga_loop_product_elements' * * @since 1.0.0 */ $elements = array_merge( $elements, apply_filters( 'botiga_loop_product_elements', array() ) ); if ( 'layout1' === $layout ) { foreach ( $elements as $element ) { if( function_exists( $element ) ) { call_user_func( $element ); } } } else { $left_elements = array_diff( $elements, array( 'woocommerce_template_loop_price', 'botiga_loop_product_description' ) ); echo '
'; echo '
'; foreach ( $left_elements as $element ) { if( function_exists( $element ) ) { call_user_func( $element ); } } echo '
'; echo '
'; if( in_array( 'woocommerce_template_loop_price', $elements ) ) { woocommerce_template_loop_price(); } echo '
'; echo '
'; if( in_array( 'botiga_loop_product_description', $elements ) ) { botiga_loop_product_description(); } echo '
'; echo '
'; } } /** * Add to cart button text */ function botiga_add_to_cart_text( $text, $product ) { $out_of_stock_text = get_theme_mod( 'out_of_stock_text', '' ); if( $out_of_stock_text && 'outofstock' === $product->get_stock_status() ) { $text = $out_of_stock_text; } return $text; } /** * Product Equal Height */ // Add class to botiga content class to flag the equal height in the product loop function botiga_equal_height_content_class( $content_class ) { $layout = get_theme_mod( 'shop_archive_layout', 'product-grid' ); $button_layout = get_theme_mod( 'shop_product_add_to_cart_layout', 'layout3' ); $equal_height = get_theme_mod( 'shop_product_equal_height', 0 ); $equal_height_class = ( ! empty( $equal_height ) && $button_layout === 'layout2' && $layout === 'product-grid' ) ? ' product-equal-height' : ''; return $content_class . $equal_height_class; } add_action( 'wp', function() { if ( is_shop() || is_product_category() || is_product_tag() || is_product_taxonomy() || botiga_post_content_has_woo_shortcode() || botiga_post_content_has_woo_blocks() ) { add_filter( 'botiga_content_class', 'botiga_equal_height_content_class' ); } } ); /** * Pass through all the legacy WooCommerce shortcodes to handle attributes */ $botiga_legacy_woo_shortcodes = array( 'products', 'recent_products', 'sale_products', 'best_selling_products', 'top_rated_products', 'featured_products', 'related_products', ); foreach( $botiga_legacy_woo_shortcodes as $botiga_legacy_woo_shortcode ) { add_filter( "shortcode_atts_{$botiga_legacy_woo_shortcode}", function( $atts ){ // Always product grid layout $atts[ 'class' ] = 'product-grid'; // Proudct Equal Height $shop_product_equal_height = get_theme_mod( 'shop_product_equal_height', 0 ); if( $shop_product_equal_height ) { $atts[ 'class' ] = 'product-equal-height'; } return $atts; } ); } /** * Change products cards heading tag from h2 (default) to h3 * To have a better SEO structure * */ function botiga_product_card_title_output( $title, $loop_post ) { if( ! is_singular( 'product' ) && ! is_404() ) { return $title; } $early = true; // 404 if( is_404() ) { $early = false; } // Related, Upsell and Recently Viewed Products if( ( get_theme_mod( 'single_related_products', 1 ) || get_theme_mod( 'single_upsell_products', 1 ) || get_theme_mod( 'single_recently_viewed_products', 0 ) ) && ! is_404() ) { $early = false; } // Return early if( $early ) { return $title; } ob_start(); the_title( '

', '

' ); $the_title = ob_get_clean(); return $the_title; } add_filter( 'botiga_shop_loop_product_title', 'botiga_product_card_title_output', 10, 2 ); /** * Add rating count to product grid. * * @param string $html * @param float $rating * * @return string */ function botiga_products_grid_rating_html( $html, $rating, $count ) { global $product; if ( ! $product ) { return $html; } $display_rating_count = get_theme_mod( 'shop_product_display_reviews_count', 0 ); if ( ! $display_rating_count ) { return $html; } $is_inside_product_grid = did_action( 'woocommerce_after_single_product_summary' ); if ( is_singular( 'product' ) && ! $is_inside_product_grid ) { return $html; } $is_inside_quick_view = did_action( 'botiga_before_quick_view_popup_content' ); if ( $is_inside_quick_view ) { return $html; } $review_count = $product->get_review_count(); if ( $review_count === 0 ) { return $html; } ob_start(); ?> () ' . $html . '
'; } add_filter( 'woocommerce_product_get_rating_html', 'botiga_products_grid_rating_html', 10, 3 ); /** * Add rating count to product grid on WooCommerce Blocks. * * @param string $html * @param object $data * @param object $product * * @return string */ function botiga_wc_blocks_products_grid_rating_html( $html, $data, $product ) { $display_rating_count = get_theme_mod( 'shop_product_display_reviews_count', 0 ); if ( ! $display_rating_count ) { return $html; } $review_count = $product->get_review_count(); if ( $review_count === 0 ) { return $html; } ob_start(); ?> () rating = str_replace( array( '"wc-block-grid__product-rating"' ), array( '"wc-block-grid__product-rating botiga-wc-product-rating-with-count"' ), $data->rating ); return $html; } add_filter( 'woocommerce_blocks_product_grid_item_html', 'botiga_wc_blocks_products_grid_rating_html', 10, 3 );