sekmeler bölümünü özellileştirme
-
merhaba, ekli dosyada belittiğim gibi sekmeler bölümündeki sıralamayı özelleştirerek istediğim gibi sıralayabilir miyim?
Attachments:
You must be
logged in to view attached files.
Hi afroturkce,
Thanks for reaching to us.
The code below will help you to reorder the tabs. Please try to add the code below in the functions.php file in your child theme.
/**
* Reorder product data tabs
*/
add_filter( 'woocommerce_product_tabs', 'woo_reorder_tabs', 98 );
function woo_reorder_tabs( $tabs ) {
$tabs['reviews']['priority'] = 33; // Reviews first
$tabs['description']['priority'] = 4; // Description second
$tabs['additional_information']['priority'] = 5; // Additional information third
// Additional Tabs are from Theme Settings
$tabs['wd_additional_tab']['priority'] = 1;
$tabs['wd_additional_tab_2']['priority'] = 2;
return $tabs;
}
Best Regards.