Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1187368

    Hi!

    i can see the stars rating in the woocommerce product grid appearing but over the product image.

    is there a way to place them after the product title or price?

    Thanks in advance

    #1187439

    Hey Javi,

    Can you give us a link to one of your product page? so we can try to inspect it.

    Best regards,
    Nikko

    #1188523

    Link sent in private

    #1188746

    Hi,

    Provide admin info in the private area so we can look into this issue further.

    Best regards,
    Jordan Shannon

    #1188903

    sent on private content

    #1189311

    Hi cohetete,

    Can you try to add this CSS code in Quick CSS, located in Enfold > General Styling:

    #top .thumbnail_container .rating_container {
        position: static;
        margin-left: 0;
        opacity: 1;
    }

    Best regards,
    Nikko

    #1189461

    Yes it works for me but what i want is to show them before or after the product title or below product price if there’s a chance

    The css solution that you sent me i had already implemented but my client don’t want it on this position

    Regards

    #1189482

    Hi cohetete,

    Please remove the code I gave, then replace it with:

    #top .thumbnail_container .rating_container {
        display: none !important;
    }
    
    #top .inner_product_header .star-rating {
        display: block;
        float: none;
        margin-left: auto;
        margin-right: auto;
    }

    and this code at the bottom of your child theme’s functions.php:
    If you aren’t using a child theme yet, you can download and find the instructions here: https://kriesi.at/documentation/enfold/child-theme/

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

    Best regards,
    Nikko

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