Home › Forums › WoodMart support forum › error on tabs › Reply To: error on tabs
razztech
i found these coded is making the problem which i added to child theme
///add tab
add_filter( ‘woocommerce_product_tabs’, ‘my_shipping_tab’ );
function my_shipping_tab( $tabs ) {
// Adds the new tab
$tabs[‘shipping’] = array(
‘title’ => __( ‘הוראות כביסה’, ‘child-theme’ ),
‘priority’ => 10,
‘callback’ => ‘my_shipping_tab_callback’
);
return $tabs;
}
function my_shipping_tab_callback() {
// The new tab content
echo do_shortcode(‘[html_block id="6483"]‘);
}
add_filter( ‘woocommerce_product_tabs’, ‘reordered_tabs’, 98 );
function reordered_tabs( $tabs ) {
$tabs[‘additional_information’][‘priority’] = 5;
$tabs[‘shipping’][‘priority’] = 15;
$tabs[‘woodmart_additional_tab’][‘priority’] = 10;
return $tabs;
}
how can i add another tab to theme by code if this make problems also i tried to change the priority to change the position