Skip to content

Instantly share code, notes, and snippets.

@woogists
Last active October 8, 2022 23:42
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
[General Snippets] Display product weight on archive pages
/**
* Show product weight on archive pages
*/
add_action( 'woocommerce_after_shop_loop_item', 'rs_show_weights', 9 );
function rs_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>';
}
}
@isholacode
Copy link

Hello, how can I display the weight before the add to cart button on the product archive pages

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment