Hi, I used the following PHP snippet
/**
* Reorder product data tabs
*/
add_filter( ‘woocommerce_product_tabs’, ‘woo_reorder_tabs’, 98 );
function woo_reorder_tabs( $tabs ) {
$tabs[‘decription’][‘priority’] = 5; // Reviews first
$tabs[‘woodmart_custom_tab’][‘priority’] = 10; // Description second
$tabs[‘additional_information’][‘priority’] = 15; // Additional information third
return $tabs;
}
The problem is on pages with no description or woodmart custom tab the following error is displayed.
Warning: call_user_func() expects parameter 1 to be a valid callback, no array or string given in /home/natu1091/public_html/wp-content/themes/woodmart/woocommerce/single-product/tabs/tabs.php on line 51