Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save woogists/b2b10288139ec939b106c0e59d439e9e to your computer and use it in GitHub Desktop.
Save woogists/b2b10288139ec939b106c0e59d439e9e to your computer and use it in GitHub Desktop.
[General Snippets][Display product dimensions on archive pages] Display product dimensions on archive pages, below the title of the product for WooCommerce v3 and up
/**
* Show product dimensions on archive pages for WC 3+
*/
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>';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment