Guest User

Untitled

a guest
Mar 20th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. add_action( 'woocommerce_after_shop_loop_item', 'rs_show_weights', 9 );
  2.  
  3. function rs_show_weights() {
  4.  
  5. global $product;
  6. $weight = $product->get_weight();
  7.  
  8. if ( $product->has_weight() ) {
  9. echo '<div class="product-meta"><span class="product-meta-label">Weight: </span>' . $weight . get_option('woocommerce_weight_unit') . '</div></br>';
  10. }
  11. }
Add Comment
Please, Sign In to add comment