Temat nie jest bezpośrednio związany z Linuxem ale... Szablon Woocommerce dla Wordpressa o nazwie Storefront wyświetla domyślnie tylko 3 kategorie. Aby to zmienić w pliku functions.php (najlepiej w szablonie child ) dodajemy: Thats not recommended way.. storefront provide filter to modify the code.. Here is solution copy and paste the code in your functions.php add_filter ( 'storefront_product_categories_args' , 'storefront_product_categories_custom_args' ); function storefront_product_categories_custom_args ( $args ) { $custom_limit_count = 10 ; // change this number for needs $args [ 'limit' ] = $custom_limit_count ; return $args ; }