Add new value in Additional Information tab on Woo Commerce Product Details Page

Add new value in Additional Information tab on Woo Commerce Product Details Page

We used a minimum order quantity plugin and we need to show minimum order quantity on additional information tab along with product attributes.

function comcast_woocommerce_display_product_attributes($product_attributes, $product){
    $product_attributes['customfield'] = [
        'label' => __('MINIMUM', 'text-domain'),
        'value' => get_post_meta($product->get_ID(), 'min_quantity', true),
    ];
    return $product_attributes;
}
add_filter('woocommerce_display_product_attributes', 'comcast_woocommerce_display_product_attributes', 10, 2);

screen33

screen34

screen35

Leave a Reply

Your email address will not be published. Required fields are marked *