Last active
April 13, 2022 12:29
-
-
Save amitabhaghosh197/dbce41ff44b9bc5c791f to your computer and use it in GitHub Desktop.
Add Star Rating to individual Products in Woocommerce #woocommerce #wordpress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** Source http://www.pootlepress.com/2014/04/100-woocommerce-tips-tricks/ | |
Change the Woocommerce star ratings to show stars rather than theme ratings | |
**/ | |
.star-rating{float:right;width:80px;height:16px;background:url(images/star.png) repeat-x left 0} | |
.star-rating span{background:url(images/star.png) repeat-x left -32px;height:0;padding-top:16px;overflow:hidden;float:left} | |
.hreview-aggregate .star-rating{margin:10px 0 0 0} | |
#review_form #respond{position:static;margin:0;width:auto;padding:0 0 0;background:transparent none;border:0} | |
#review_form #respond:after{content:"";display:block;clear:both} | |
#review_form #respond p{margin:0 0 10px} | |
#review_form #respond .form-submit input{left:auto} | |
#review_form #respond textarea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%} | |
p.stars:after{content:"";display:block;clear:both} | |
p.stars span{width:80px;height:16px;position:relative;float:left;background:url(images/star.png) repeat-x left 0} | |
p.stars span a{float:left;position:absolute;left:0;top:0;width:16px;height:0;padding-top:16px;overflow:hidden} | |
p.stars span a:hover,p.stars span a:focus{background:url(images/star.png) repeat-x left -16px} | |
p.stars span a.active{background:url(images/star.png) repeat-x left -32px} | |
p.stars span a.star-1{width:16px;z-index:10} | |
p.stars span a.star-2{width:32px;z-index:9} | |
p.stars span a.star-3{width:48px;z-index:8} | |
p.stars span a.star-4{width:64px;z-index:7} | |
p.stars span a.star-5{width:80px;z-index:6} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/*-----Source: http://stackoverflow.com/questions/14227121/how-do-you-add-the-star-ratings-for-products-in-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>'; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment