A simple, powerful and independent e-commerce platform.
Sell anything with ease.

Show product weight on category pages

This code displays the weight (if set) of each product on the category pages.

		/**
 * Show product weight on category pages
 */

add_action('woocommerce_after_shop_loop_item', 'cc_show_weights', 9);

function cc_show_weights() {

  global $product;
  $weight = $product->get_weight();

  if ($product->has_weight()) {
    echo '<div class="product-meta"><span class="product-meta-label">Weight: </span>' . $weight . get_option('woocommerce_weight_unit') . '</div></br>';
  }

}
	
View Raw Code ID: 91074