• Resolved wpnov1

    (@wpnov1)


    Hi, I am looking for a product review plugin for my Woocommerce site.

    Does this plugin allow:
    – Customer who bought the same product review the product twice?
    – Customer who bought variations of the product to review the different product variations?
    – Sending reminder to customer ?

    Thank you!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Gemini Labs

    (@geminilabs)

    1. Yes, and you can also restrict it to one review per-product (using the username, submitted email, or IP address).
    2. Yes…however, to do this you would need to add a custom SELECT (dropdown) field to the submission form where the customer can choose the product variation that they are reviewing (More info here: https://pastebin.com/4fvKErcp). Additionally, if you have restricted it to one review per-product, then you would also need to use the site-reviews/review-limits/validate filter hook to allow one review per-product-variation.
    3. No.
    Thread Starter wpnov1

    (@wpnov1)

    Thanks for the quick response.

    When someone is leaving a review – there is a check box above the submit button but there is no explanation of what this checkbox is for – see Checkbox Image
    And you can proceed with and without checking this. Can you tell me what this checkbox is for and can we make the text visible?

    Why is the customer reviews ended up in the comment area, not in the reviews area like it is supposed to? Customer Reviews

    Plugin Author Gemini Labs

    (@geminilabs)

    1. This is the terms checkbox.

    It is likely hidden because your theme is hiding all <label> elements using display:none; and this is hiding the checkbox label. The best way to fix this is to adjust your theme’s CSS, however, you can also do this:

    label.glsr-checkbox-label {
        display: inline-block !important;
    }

    You can make this checkbox field a required field on the “Settings > Submissions” page.

    2. It seems like you are mixing up the Woocommerce reviews (which are stored as comments) with the Site Reviews reviews.

    • This reply was modified 6 years, 5 months ago by Gemini Labs.
    Thread Starter wpnov1

    (@wpnov1)

    I added your code to my child theme style. css and nothing is happening

    How do I separate the Woocommerce reviews from the Site Reviews?

    Plugin Author Gemini Labs

    (@geminilabs)

    1. In that case, you may need to add !important to the end to force the rule. You may also need to change the color of the checkbox label if your theme is making it white.

    2. The Woocommerce reviews are completely unrelated to Site Reviews. Nothing connects them.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Product Reviews & Variations’ is closed to new replies.