Hi,
I am afraid we do now a quick solution for this case. These icons are interactive, they are not just an image.
Star rating icons are created with icon font. That mean to replace those icons you need to change:
1. Font family in the following CSS selector to your own custom font family (or any other icon font like Font Awesome)
.star-rating {
font-family: woodmart-font;
}
2. Change the following Unicode for grey (empty) stars.
.star-rating:before {
content: "\f149" "\f149" "\f149" "\f149" "\f149";
}
3. Change the following Unicode for yellow stars.
.star-rating span:before {
content: "\f148" "\f148" "\f148" "\f148" "\f148";
}
Best Regards