Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1371684

    Bonjour,
    Actuellement ma boutique enfold affiche seulement 15 produits par page, pour afficher 30 ou 45 produits, le visiteur doit faire ce choix dans les parametres du site, comment faire pour afficher par defaut 30 ou 45 produits ?
    Bien cordialement,

    #1371731

    Hi jetsaveurs.com,

    Please try to add this code in your child theme’s functions.php code (just change the value as you see fit):

    /**
     * Change number of products that are displayed per page (shop page)
     */
    add_filter( 'loop_shop_per_page', 'new_loop_shop_per_page', 20 );
    
    function new_loop_shop_per_page( $products ) {
        $products = 30;
        return $products;
    }

    For further information, check woocommerce documentation: https://woocommerce.com/document/change-number-of-products-displayed-per-page/
    Hope this helps.

    Best regards,
    Nikko

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