I
I
Ilya Derevyannykh2021-09-28 11:00:46
WooCommerce
Ilya Derevyannykh, 2021-09-28 11:00:46

How to add units of measurement to characteristics?

How to add units of measurement to attributes? To be able to "Length: 5 cm"
Could not find a solution. Found this but it doesn't work

add_action( 'woocommerce_product_options_shipping_product_data', 'woo_add_custom_general_fields' );
add_action( 'woocommerce_process_product_meta', 'woo_add_custom_general_fields_save' );

function woo_add_custom_general_fields() {

global $woocommerce, $post;
 
echo '<div class="options_group">';
// Add Select field in woocommerce
woocommerce_wp_select( 
array( 
  'id'      => '_select', 
  'label'   => __( 'Единица измерения', 'productunit' ), 
  'options' => array(
    'шт'   => __( 'шт', 'productunit' ),
    'пачка'   => __( 'пачка', 'productunit' ),
    'кв.м' => __( 'кв.м', 'productunit' )
    )
  )
);
echo '</div>'; }

function woo_add_custom_general_fields_save( $post_id ){
    
  // Select
  $woocommerce_select = $_POST['_select'];
  if( !empty( $woocommerce_select ) )
  update_post_meta( $post_id, '_select', esc_attr( $woocommerce_select ) );
  
}

add_filter( 'woocommerce_cart_product_price' , 'custom_price', 10, 2);
add_filter( 'woocommerce_get_price_html' , 'custom_price', 10, 2);

function custom_price( $price, WC_Product $product ){

$unit = get_post_meta( $product->get_ID(), '_select', true );

if ($unit) {

$price .= '<span class="woocommerce-Price-amount amount"><span class="product price amount rubl">';
$price .= ' / ' ;
$price .= $unit;
$price .= '</span></span>';

}

return $price;

}

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question