Okay
  Public Ticket #3145764
Display review stars on catalog view
Closed

Comments

  •  6
    Fabian started the conversation

    Hello Laborator Team,

    Can I display the review stars in the catalog / product overview?

    Thank you
    Fabian

  •  1,558
    Laborator replied

    Hi Fabian,

    This is not enabled by default in the theme, but I found a code which you can try and put under theĀ functions.php of your child theme:

    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );
    if ( ! function_exists( 'woocommerce_template_loop_rating' ) ) {
        /**
         * Display the average rating in the loop.
         */
        function woocommerce_template_loop_rating() {
            wc_get_template( 'loop/rating.php' );
        }
    }
    

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  •  6
    Fabian replied

    Hi Art,

    Thank you so much for your fast reply and help.
    Works great.

    All the best,
    Fabian

  •  1,558
    Laborator replied

    Happy to hear that Fabian, have a great daysmile.png

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group