Hi Jan,
After looking at several solutions I really just needed to display the attribute prices differently. I installed a contribution that shows the actual product price in the attribute price dropdown which solved half the problem. I then created a new way to list items instead of the traditional dropdown, checkbox, etc. I just made one that used the input type "hidden" to show just a list of the attributes.
Added to functions/html_output.php
// Output a form list menu for product info page
function tep_draw_list_menu($name, $values, $default = '', $parameters = '', $required = false) {
$field ='';
if (empty($default) && isset($GLOBALS[$name])) $default = stripslashes($GLOBALS[$name]);
for ($i=0, $n=sizeof($values); $i<$n; $i++) {
$value = tep_output_string($values[$i]['id']);
$field .= '<input type="hidden" name="' . $name . '" value="' . $value . '"';
$field .= ' ';
$field .= '>' . tep_output_string($values[$i]['text'], array('"' => ' '')) . '<br>';
}
$field .= '';
return $field;
}
Then changed the lines in product_info.php to
<td class="main" valign="top" style="padding-right:10px; font-weight:bold"><?php echo $products_options_name['products_options_name'] . ':'; ?></td>
<td class="main"><?php echo tep_draw_list_menu('id[' . $products_options_name['products_options_id'] . ']', $products_options_array, $selected_attribute); ?></td>
That displayed the actual product prices for each attribute in a list form and takes away the option of selecting an option which I did not need for just a catalog (no shopping).