woogists
3/12/2018 - 11:56 AM

[Display product dimensions on archive pages] Display WooCommerce 3.0+ product dimensions on archive pages, below the title of the product.

[General Snippets][Display product dimensions on archive pages] Display WooCommerce 3.0+ product dimensions on archive pages, below the title of the product.

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

function rs_show_dimensions() {
    global $product;
    $dimensions = wc_format_dimensions($product->get_dimensions(false));

        if ( $product->has_dimensions() ) {
                echo '<div class="product-meta"><span class="product-meta-label">Dimensions: </span>' . $dimensions . '</div>';
        }
}