Show Product Weight on Archive Pages
function g9_show_weights() { global $product; $weight = $product->get_weight(); if ($product->has_weight()) { echo ‘ Weight: ‘ . $weight . get_option(‘woocommerce_weight_unit’) . ‘ ‘; } } add_action(‘woocommerce_after_shop_loop_item’, ‘g9_show_weights’, 9);Continue reading