Quote Originally Posted by dhcernese View Post
I wiped everything out, uploaded my 1.3.8a merged files, created an empty database, imported my database export, upgraded the database. Same problem, even with the green classic template. So I guess the only explanation is that one of the very last merges I was testing is somehow affecting the starting-at price.

This wil be hard to track down. Ug.
You'll never believe how lucky I was. I found new code in functions_prices.php that assumes that product_type = 3 is something special, hasn't been renamed or reused for another purpose. I did reuse it and rename it. If someone else is using product_type=3 for anything you may need to comment out this code:

\includes\functions\functions_prices.php
PHP Code:
    // no prices on Document General
    
if ($product_check->fields['products_type'] == 3) {
      return 
'';
    }