shshanker
9/8/2015 - 6:32 AM

WooCommerce add weight unit after price

WooCommerce add weight unit after price

<?php
// Add R xx.xx per KG
add_action( 'woocommerce_price_html', 'wc_custom_price', 10, 2 );
function wc_custom_price( $price, $product ) {
	return sprintf( __( '%s per KG', 'woocommerce' ), woocommerce_price( $product->get_price() ) );
}
?>