change upsell posts_per_page
-
I just cannot seem to change the upsell posts per page from
-1
to3
I use this code://change upsell count function my_cross_sell() { $args = array( 'posts_per_page' => 3, 'columns' => 3, ); return $args; } add_filter( 'woocommerce_upsell_display_args', 'my_cross_sell' );
whats wrong here?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘change upsell posts_per_page’ is closed to new replies.