Hide Additional Information Tab WooCommerce Single Product Page

  • Home
  • Hide Additional Information Tab WooCommerce Single Product Page
Hide Additional Information Tab WooCommerce Single Product Page
add_filter( ‘woocommerce_product_tabs’, ‘bbloomer_remove_product_tabs’, 9999 ); function bbloomer_remove_product_tabs( $tabs ) { unset( $tabs[‘additional_information’] ); return $tabs; }

Leave a comment