• Great plugin, worked fine, was integrated in my website, so I need it, but cant fix this error:

    Notice: Undefined index: tab_name in /data/web/virtuals/114837/virtual/www/wp-content/plugins/woocommerce-custom-product-data-fields/class-wc-product-data-fields.php on line 107

    (shown above plugin custom input fields in product editing)

    Please, could you help me?

    https://ww.wp.xz.cn/plugins/woocommerce-custom-product-data-fields/

Viewing 1 replies (of 1 total)
  • Here’s what I found:

    The error comes from “class-wc-product-data-fields.php” in the plugin directory, line 152. It currently reads:

    if(!$field['tab_name']){
    //...
    }

    It should read:

    if(!isset($field['tab_name'])){
    //...
    }
Viewing 1 replies (of 1 total)

The topic ‘Undefined index: tab_name’ is closed to new replies.