Bu kodu temanızın ana dizininde bulunan function.php ye eklerseniz işinizi görürsünüz muhtemelen. add_filter( 'woocommerce_product_tabs', 'customize_product_tabs', 100 );
function customize_product_tabs( $tabs ) {
if ( ! is_user_logged_in() ) {
unset( $tabs['description'] ); // remove the description tab
}
return $tabs;
}