Quote Originally Posted by MeltDown
Even if all other file are new files, they still need to be placed in "override" files to protect them from being over written, correct?
Nope, not correct! I think that is the problem. The pricelist files need to be copied as you find them in the zip (in the zen-cart/ dir), except the files in zen-cart\includes\templates\YOUR_TEMPLATE\ those need to be copied to your template directory.

Also, if "Admin/Configuration/Printable Price-list/Show Price List" is set to false only the link is hidden, but you should still be able to see the pricelist at: http://www.yourdomain.we/cart/index....page=pricelist

This code is to add somewhere in your templates:
Code:
  if (SHOW_CATEGORIES_BOX_PRICELIST == 'true') {
    $content .= '<br /><a href="' . zen_href_link(FILENAME_PRICELIST) . '">' . CATEGORIES_BOX_HEADING_PRICELIST . '</a>';
  }
The pricelist will work without it, but you only won't see any link.