I only kept this piece of code:
add_filter( 'woocommerce_product_tabs', 'woo_reorder_tabs', 98 );
function woo_reorder_tabs( $tabs ) {
$tabs['additional_information']['priority'] = 5;
return $tabs;
}
and error is still there:
[Mon Jan 12 06:51:56 2015] [warn] [client 207.46.13.11] mod_fcgid: stderr: PHP Warning: call_user_func() expects parameter 1 to be a valid callback, no array or string given in /.../themes/dante/woocommerce/single-product/tabs/tabs.php on line 49
Can you please try and investigate about it?