如何将WooCommerce中评论评分的图像从当前的“ S”更改为实际的星级图像?
经过良好的Google搜索后,我尝试了以下操作:Replace theme ratings with WooCommerce stars
但这是行不通的。它只是将S更改为小盒子。
当前的CSS:
.woocommerce .star-rating {
float:right;
overflow:hidden;
position:relative;
height:1em;
line-height:1;
font-size:1em;
width:5.4em;
font-family: HelveticaNeue-Light, Helvetica Neue Light;
}
.woocommerce .star-rating:before {
content:"\73\73\73\73\73";
color:#d3ced2;
float:left;
top:0;
left:0;
position:absolute;
}
.woocommerce .star-rating span {
overflow:hidden;
float:left;
top:0;
left:0;
position:absolute;
padding-top:1.5em;
}
.woocommerce .star-rating span:before {
content:"\53\53\53\53\53";
top:0;
position:absolute;
left:0
}
最佳答案
在CSS中使用它:
.woocommerce .star-rating span {
font-family:star;
}
关于php - 如何在WooCommerce中更改S的评论评分?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36428079/