Home Forums WoodMart support forum Move ratings below price on product shop/archive page.

Move ratings below price on product shop/archive page.

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

    vapescotts
    Participant

    Hi Xtemos,

    I’ve managed to move the review stars using this line of code

    add_filter( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 20 );

    But i need to remove the original review rating as currently, there are now two ratings. I want to remove the one directly under the product title. I’ve tried using the correct code as seen below, but nothing happends.

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

    Luke Nielsen
    Keymaster

    Hello,

    Ok, in this case, try to use the below code, enter it in Theme Settings -> Custom CSS.

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

    Thanks for your time and have a great day.

    Kind Regards

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