I received this via PM and thought I would share the solution just in case.

Originally Posted by
trudesign
I am wondering if I install it I will be able to have most customers see no pricing, and people that login that I give wholesale access to, can shop with wholesale pricing.
so everyone would see no pricing whatsoever unless I give them wholesale access.
note out lines 139, 143 of includes/functions/functions_prices.php. They are identical and look like the following.
PHP Code:
$products_price = $product_check->fields['products_price'];
Furthermore note the following lines (70-76) in includes/templates/YOUR TEMPLATE/tpl_product_info_display.php
PHP Code:
if ($_SESSION['customer_id']) {
$customers_id = $_SESSION['customer_id'];
$customer_check = $db->Execute("select * from " . TABLE_CUSTOMERS . " where customers_id = '$customers_id'");
if ($customer_check->fields['customers_whole'] == "1") {
echo '<span>' . ' Retail Price: '.$one_time . ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == '1') ? TEXT_BASE_PRICE : '') . zen_get_products_display_retail_net_price((int)$_GET['products_id']).'</span><br /> ';
}
}
This should work. I haven't tested it. Please let everyone know if it does. It will not ever show the Retail Price but you will need to add some arbitrary number in there. There is a way to show a MSRP or such price in the Retail prices place and only show that to WS customers but it will get a lot more complicated.
Cheers,
Bookmarks