[Resolved] Customize woocomerce layout

Home Forums Support [Resolved] Customize woocomerce layout

Home Forums Support Customize woocomerce layout

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #225815
    Thierry

    Hello,

    On my page category Woocommerce i want display the product with list (and not grid) without thumbails, how i can do this ?

    Thx

    #225844
    Tom
    Lead Developer
    Lead Developer

    This PHP should make them 1 column:

    add_filter('loop_shop_columns', 'loop_columns');
    if (!function_exists('loop_columns')) {
    	function loop_columns() {
    		return 1; // 3 products per row
    	}
    }

    I’m not sure of the best way to remove the thumbnails – you might want to ask WooCommerce support that one.

    #225907
    Thierry

    It’s good for this. Thx Tom.

    #225956
    Tom
    Lead Developer
    Lead Developer

    You’re welcome 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.