I want to display product weight on cart page:
I've come so far:
<td class="product-weight">
<?php
echo apply_filters( 'woocommerce_cart_item_weight', WC()->cart->cart_contents_weight);
?>
</td><!-- /.product-weight -->
This piece of code will display the total weight of cart but I want weight of individual product.
Any help would be appreciated. Reference URL: Link [plz add few products]
Please try the below code. It is not tested.
Try out this :
Edited: