Had a person point our an error in instruction 10a) of the install where you are installing into catalog/product_info.php.

Where it read

if (tep_not_null($product_info[$e['field']])) { // only display if information is set for product

it should actually read

$mt = ($e['uses_list'] ? ($product_info[$e['field']] == 0) : !tep_not_null($product_info[$e['field']]));
if (!$mt) { // only display if information is set for product

A different check for emptiness is required for list type extra fields versus text type fields. If you have already installed this contribution you need to make this change.

Complete contribution is attached but only step 10a) of the instructions has been changed.


More...