Als je de eigenschappen van een product toont op de productpagina en je hebt 1 (of meerdere) specifieke attributen die je niet wilt tonen kun je onderstaande code toevoegen aan de functions.php van je thema of in de plugin Code Snippets.


// remove specific attribute

function mycode_hide_attributes_from_additional_info_tabs( $attributes, $product ) {

  /**
   * Array of attributes to hide from the Additional Information
   * tab on single WooCommerce product pages.
   */
  $hidden_attributes = [
    'pa_verzendgoogle'
  ];

  foreach ( $hidden_attributes as $hidden_attribute ) {

    if ( ! isset( $attributes[ $hidden_attribute ] ) ) {
      continue;
    }

    $attribute = $attributes[ $hidden_attribute ];

    $attribute->set_visible( false );
  }

  return $attributes;
}

add_filter( 'woocommerce_product_get_attributes', 'mycode_hide_attributes_from_additional_info_tabs', 20, 2 );