Hi,
I want to change the number of products in the cross-sell.
My cart shows only 2 products, but i want to have 4.
I was having the same problem with related products (also only show 2 products), so i used in functions.php:
function woocommerce_output_related_products() {
woocommerce_related_products(3,3); // Display 3 products in rows of 3
}
<?php
/**
* Cross-sells
*/
global $woocommerce_loop, $woocommerce, $product;
$crosssells = $woocommerce->cart->get_cross_sells();
if ( sizeof( $crosssells ) == 0 ) return;
$args = array(
'post_type' => 'product',
'ignore_sticky_posts' => 1,
'posts_per_page' => 4,
'no_found_rows' => 1,
'orderby' => 'rand',
'post__in' => $crosssells
);
$products = new WP_Query( $args );
$woocommerce_loop['columns'] = 2;
if ( $products->have_posts() ) : ?>
<div class="cross-sells">
<h2><?php _e('You may be interested in…', 'woocommerce') ?></h2>
<ul class="products">
<?php while ( $products->have_posts() ) : $products->the_post(); ?>
<?php woocommerce_get_template_part( 'content', 'product' ); ?>
<?php endwhile; // end of the loop. ?>
</ul>
</div>
<?php endif;
wp_reset_query();
The second question, is it possible to show the cross-sell items on a single-product page?