我有一家 woocommerce 商店,我想在您看到每个产品的缩略图时为其添加星级。我已经在大产品视图中添加了星标,但我希望它们显示在每个缩略图下方,就像大多数电子商务商店(如 woodland.com)一样。我知道我可以使用 css 从视图中禁用项目,但不能添加它们。有什么想法吗?
4 回答
实际上有一种更简洁的方法来处理这个问题。只需使用 Woocommerce 内置的内置功能:
add_action('woocommerce_after_shop_loop_item', 'get_star_rating' );
function get_star_rating()
{
global $woocommerce, $product;
$average = $product->get_average_rating();
echo '<div class="star-rating"><span style="width:'.( ( $average / 5 ) * 100 ) . '%"><strong itemprop="ratingValue" class="rating">'.$average.'</strong> '.__( 'out of 5', 'woocommerce' ).'</span></div>';
}
我已经确认这对我有用。
您可以将其放入您的主题 functions.php 文件中:
add_action('woocommerce_after_shop_loop_item', 'my_print_stars' );
function my_print_stars(){
global $wpdb;
global $post;
$count = $wpdb->get_var("
SELECT COUNT(meta_value) FROM $wpdb->commentmeta
LEFT JOIN $wpdb->comments ON $wpdb->commentmeta.comment_id = $wpdb->comments.comment_ID
WHERE meta_key = 'rating'
AND comment_post_ID = $post->ID
AND comment_approved = '1'
AND meta_value > 0
");
$rating = $wpdb->get_var("
SELECT SUM(meta_value) FROM $wpdb->commentmeta
LEFT JOIN $wpdb->comments ON $wpdb->commentmeta.comment_id = $wpdb->comments.comment_ID
WHERE meta_key = 'rating'
AND comment_post_ID = $post->ID
AND comment_approved = '1'
");
if ( $count > 0 ) {
$average = number_format($rating / $count, 2);
echo '<div class="starwrapper" itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">';
echo '<span class="star-rating" title="'.sprintf(__('Rated %s out of 5', 'woocommerce'), $average).'"><span style="width:'.($average*16).'px"><span itemprop="ratingValue" class="rating">'.$average.'</span> </span></span>';
echo '</div>';
}
}
请注意,您可能需要woocommerce_after_shop_loop_item
根据您的设计以及您希望星星出现的确切位置更改为不同的钩子。
此页面列出了WooCommerce操作挂钩:http ://wcdocs.woothemes.com/codex/extending/hooks/ 。我没有看到任何与缩略图相关的挂钩,但您可以尝试woocommerce_after_shop_loop_item_title
或woocommerce_after_shop_loop_item
。
(这个函数本质上是从 WooCommerce 的 single-product-reviews.php 复制而来)
从 WooCommerce 3.0+ 开始,这是正确的代码:
$product = wc_get_product( $id );
echo wc_get_rating_html( $product->get_average_rating() );
产品对象上的 get_rating_html() 方法已被弃用。
更多信息在这里:https ://docs.woocommerce.com/wc-apidocs/function-wc_get_rating_html.html
使用这些函数(或下面较短的函数,输出相同的 HTML),您可以管理以数字形式输出评分,完全重用 Woocommerce 的函数:
function get_star_rating() {
global $woocommerce, $product;
/*$average = $product->get_average_rating();*/
echo $product->get_rating_html();
}
然后,您需要对其进行样式设置以显示星星。对于 5 颗星中的 3 颗星的评分,Woothemes 会这样做(诀窍在于相应 CSS 的宽度和 :before):
HTML(由 Woocommerce 输出):
<div itemprop="reviewRating" itemscope="" itemtype="http://schema.org/Rating" class="star-rating" title="Rated 3 out of 5">
<span style="width:60%"><strong itemprop="ratingValue">3</strong> out of 5</span>
</div>
还有 CSS(这里可能有一些多余的行):
#reviews .comment .star-rating {
float: none;
font-size: 1em;
margin: 0;
position: absolute;
top: 2px;
right: 20px;
}
.star-rating {
overflow: hidden;
height: 1em;
line-height: 1em;
width: 5.1em;
font-family: "fontawesome";
}
.star-rating:before {
content: "\f006\f006\f006\f006\f006";
float: left;
top: 0;
left: 0;
position: absolute;
letter-spacing: 0.1em;
letter-spacing: 0\9;
color: #fbfeff;
}
.star-rating span {
overflow: hidden;
float: left;
top: 0;
left: 0;
position: absolute;
padding-top: 1.5em;
}
.star-rating span:before {
content: "\f005\f005\f005\f005\f005";
top: 0;
position: absolute;
left: 0;
letter-spacing: 0.1em;
letter-spacing: 0\9;
color: #f36557;
}
.star-rating {
line-height: 1em;
font-size: 1em;
font-family: "fontawesome";
}
希望有帮助!