Woocommerce có sẵn chức năng đáng giá trên phiên bản miễn phí. Tuy nhiên, đôi lúc chúng ta cần chỉnh sửa theo ý muốn riêng, đây có thể là một vài gợi ý tốt dành cho bạn.
Hiển thị tất cả ***** sao (rating star) đánh giá
1 2 3 4 5 6 7 8 | function show_rating( $rating_html, $rating, $count ) { $rating_html = '<div class="star-rating">'; $rating_html .= wc_get_star_rating_html( $rating, $count ); $rating_html .= '</div>'; return $rating_html; }; add_filter( 'woocommerce_product_get_rating_html', 'show_rating', 100, 3 ); |
Hiển thị số lượt đánh giá
Copy file rating.php và dán đoạn code dưới đây là xong.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | <?php /** * Loop Rating * * This template can be overridden by copying it to yourtheme/woocommerce/loop/rating.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you * (the theme developer) will need to copy the new files to your theme to * maintain compatibility. We try to do this as little as possible, but it does * happen. When this occurs the version of the template file will be bumped and * the readme will list any important changes. * * @see https://docs.woocommerce.com/document/template-structure/ * @author WooThemes * @package WooCommerce/Templates * @version 3.4.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; } global $product; if ( get_option( 'woocommerce_enable_review_rating' ) === 'no' ) { return; } $rating_count = $product->get_rating_count(); $review_count = $product->get_review_count(); $average = $product->get_average_rating(); if ( $rating_count >= 0 ) : ?> <?php echo wc_get_rating_html($average, $rating_count); ?> <?php if ( comments_open() ): ?><a href="<?php echo get_permalink() ?>#reviews" class="woocommerce-review-link" rel="nofollow">(<?php printf( _n( '%s',$review_count,'woocommerce' ), '<span class="count">' . esc_html( $review_count ) . '</span>' ); ?>)</a><?php endif ?> <?php endif; ?> |
Nguồn: https://pttuan410.com/huong-dan-show-reviews-star-rating-du-khong-co-danh-gia/
Hello, trong bài viết này của bạn có sử dụng hình ảnh của bên mình, và hầu như toàn bộ code của bạn là copy của bên mình (Trong khuôn khổ bài viết này.) blog mình là pttuan410.com. Nếu bạn là 1 người viết blog chuyện nghiệp thì mình nghĩ bạn nên dẫn nguồn về website nơi mà bạn lấy nội dung. Tks
Cám ơn tác giả đã ghé thăm, mình đã bổ sung link chi tiết rồi nhé.