Comment supprimer les onglets WooCommerce dans WordPress

  1. First, go to your WordPress dashboard.
  2. Click on "Appearance" in the sidebar, then select "Theme Editor."
  3. Find the "functions.php" file in the list of theme files on the right-hand side.
  4. Add the following code at the end of the "functions.php" file:
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
function woo_remove_product_tabs( $tabs ) {
    unset( $tabs['description'] );          // Remove the description tab
    unset( $tabs['reviews'] );          // Remove the reviews tab
    unset( $tabs['additional_information'] );   // Remove the additional information tab
    return $tabs;
}
  1. Click the "Update File" button to save the changes.