lorro

WooCommerce - Show cart weight

Jun 11th, 2015
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <table>
  2. <tr class="total weight">
  3. <th><strong><?php _e('Total Weight', 'woocommerce'); ?></strong></th>
  4. <td><strong>
  5. <?php
  6.   $total_weight = $woocommerce->cart->cart_contents_weight;
  7.   $total_weight .= ' '.get_option('woocommerce_weight_unit');
  8.   echo $total_weight;
  9. ?>
  10. </strong></td>
  11. </tr>
  12. </table>
Add Comment
Please, Sign In to add comment