Home Forums WoodMart support forum Remove star rating from product loop

Remove star rating from product loop

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

    zurich
    Participant

    Hi!
    How can i remove rating from product archive page?
    This hook make no effect
    remove_action (‘woocommerce_after_shop_loop_item_title’, ‘woocommerce_template_loop_rating’, 5 );

    #232949

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    .product-grid-item .star-rating {
        display:none;
    }

    Best Regards

    #232955

    zurich
    Participant

    I don’t want to use css for it.
    Do you have hook to remove this function?
    And why standard woocommerce hook make no effect?

    #232963

    Hello,

    We have tested this code and it works properly:

    remove_action ('woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Please add to the functions.php of the child theme.

    Best Regards

Viewing 4 posts - 1 through 4 (of 4 total)