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
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?
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.