Skip to content

Instantly share code, notes, and snippets.

@woogists
Last active October 8, 2022 23:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save woogists/1bf1506fb85647232acab639bf000a59 to your computer and use it in GitHub Desktop.
Save woogists/1bf1506fb85647232acab639bf000a59 to your computer and use it in GitHub Desktop.
[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