Hi
How to remove quantity selection from the product category page, on the single page i have removed it by using the following code:
function custom_remove_all_quantity_fields( $return, $product ) {return true;}
add_filter( ‘woocommerce_is_sold_individually’,’custom_remove_all_quantity_fields’, 10, 2 );
Also how to style the product design on the category page.
Thank You