[Support request] How to disable profile logo in reviews section?

Home Forums Support [Support request] How to disable profile logo in reviews section?

Home Forums Support How to disable profile logo in reviews section?

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #410329
    bluebit

    For the reviews on the bottom of the page, on the right side there are profile logos next to the stars, how to disable? http://wildlatina.co/product/cindy/

    I’ve got your custom css plugin installed and a code snippets plugin.

    Also the large gap of space between the title Reviews and the actual reviews, how to make the gap smaller? Disable/Remove the “4 reviews for Bikini Blanco” line.

    #410411
    Leo
    Staff
    Customer Support

    Hi there,

    Try this CSS:

    .comment_container > img {
        display: none;
    }
    .woocommerce div.product .woocommerce-tabs ul.tabs {
        margin-bottom: 0;
    }
    .woocommerce-tabs #reviews {
        padding-top: 0;
        padding-left: 60px;
        padding-right: 60px;
    }
    #410468
    bluebit

    fixed it somewhat, this is what it looks like now http://wildlatina.co/product/cindy/

    How to disable/remove/hide the “3 reviews for Bikini Blanco” title?
    Remove/Hide the white border line thats on each review.
    Center the entire reviews section to the middle, seems like its aligned to the right. Maybe padding can fix it.

    #410669
    Leo
    Staff
    Customer Support

    Try this:

    h2.woocommerce-Reviews-title {
        display: none;
    }
    .woocommerce #reviews #comments ol.commentlist li .comment-text {
        border: none;
        margin: 0;
    }
    #410748
    bluebit

    Looking great, lastly. How do I make the Reviews title a bigger size? http://wildlatina.co/product/cindy/

    Move the part on the bottom that says “Only logged in customers who have purchased this product may leave a review.” from left side to center align.

    And add padding to the left and right side of the reviews section.

    #410835
    Leo
    Staff
    Customer Support
    li#tab-title-reviews {
        font-size: 20px;
    }
    p.woocommerce-verification-required {
        text-align: center;
    }

    For the padding I’ve adjusted the code above: https://generatepress.com/forums/topic/how-to-disable-profile-logo-in-reviews-section/#post-410411

    #410868
    bluebit

    How do I put an underline for the “Reviews” title? http://wildlatina.co/product/cindy/

    And remove/hide the line “Uploaded image(s):” inside the reviews section.

    #410918
    Leo
    Staff
    Customer Support
    .reviews_tab {
        text-decoration: underline;
    }
    p.iv-comment-image-text {
        display: none;
    }
    #410944
    bluebit

    that worked!!!! i actually removed the underline, didn’t look to pretty.

    How to change the text size and color of the reviewers text from gray to white for example this “Tim Jae (verified owner) – Octubre 5, 2017”

    Change the reviews order from newest to oldest, its currently oldest to newest.

    #411004
    Leo
    Staff
    Customer Support

    This CSS should do:

    .woocommerce #reviews #comments ol.commentlist li .meta {
        color: #ffffff;
    }

    You’d have to check with WooCommerce for that last question. All of the above should be answered by them by the way 🙂

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