You may also like product Page section
-
Dear team
if you see on this product page
[ redundant link removed ]
at bottom of page in you may also like section products images are very big.
however same case is for related products aswell but i apply this code to improve related product section.
code is/** * @snippet WooCommerce Change Number of Related Products */ add_filter( 'woocommerce_output_related_products_args', 'bbloomer_change_number_related_products', 9999 ); function bbloomer_change_number_related_products( $args ) { $args['posts_per_page'] = 6; // # of related products $args['columns'] = 6; // # of columns per row return $args; }
however i dont know how can i apply same rulefor you may also like products.
requested you to help mein this caseThe page I need help with: [log in to see the link]
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘You may also like product Page section’ is closed to new replies.