weight unit
-
Hello,
i used this code to show the weight for my product normally i just need to show how mant ML or G my product has the problem of this code itll show the specific weight option which i chose it KG or ML so only 1 option is there another way to set the weight ml and g to show on upper add to cart ?
add_action ('woocommerce_single_product_summary', 'show_weight', 20); function show_weight() { global $product; $weight_unit = get_option('woocommerce_weight_unit'); $attributes = $product->get_attributes(); if ( $product->has_weight() ) { print '<p>Weight: '.$product->get_weight(). $weight_unit . '</p>'.PHP_EOL; } }
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘weight unit’ is closed to new replies.