I need your help with product evaluation
-
hello, how can I remove the marked text in the picture, I want only the number to remain, as an example, I want it to appear as (1).
Attachments:
You must be
logged in to view attached files.
Hello,
Please check Dashboard> Layouts, find the template for a Single product, and remove this element.
If you have any questions please feel free to contact us.
Best Regards
Please don’t answer my question without reading it 🙁 I just want to remove the post next to the number 1 in parentheses next to the stars. I don’t want to remove all the comment stars, I specifically flagged the photo in the previous post.
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
.woocommerce-review-link {
font-size: 0;
}
.woocommerce-review-link .count {
font-size: var(--wd-text-font-size);
}
.woocommerce-review-link .count:before {
content: "(";
}
.woocommerce-review-link .count:after {
content: ")";
}
Best Regards