top of page

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

  • Writer: سُلَيْمَان بْن دَاوُوْد
    سُلَيْمَان بْن دَاوُوْد
  • Jun 5, 2020
  • 1 min read

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);




Recent Posts

See All

Comments


© 2020 by syednazrulhassan

bottom of page