Ajeh:
See if you can customize the function zen_get_products_display_price in the functions_prices.php as this displays all of the prices ...
For the attributes, you would need to customize the attributes.php module and could change the code from:
if (((CUSTOMERS_APPROVAL == '2' and $_SESSION['customer_id'] == '') or (STORE_STATUS == '1')) or ((CUSTOMERS_APPROVAL_AUTHORIZATION == '1' or CUSTOMERS_APPROVAL_AUTHORIZATION == '2') and $_SESSION['customers_authorization'] == '') or (CUSTOMERS_APPROVAL == '2' and $_SESSION['customers_authorization'] == '2') or (CUSTOMERS_APPROVAL_AUTHORIZATION == '2' and $_SESSION['customers_authorization'] != 0) ) {
>
> to read:
> ```php
if (true || ((CUSTOMERS_APPROVAL == '2' and $_SESSION['customer_id'] == '') or (STORE_STATUS == '1')) or ((CUSTOMERS_APPROVAL_AUTHORIZATION == '1' or CUSTOMERS_APPROVAL_AUTHORIZATION == '2') and $_SESSION['customers_authorization'] == '') or (CUSTOMERS_APPROVAL == '2' and $_SESSION['customers_authorization'] == '2') or (CUSTOMERS_APPROVAL_AUTHORIZATION == '2' and $_SESSION['customers_authorization'] != 0) ) {
which would effectively not show the attributes prices ...
I did try to change in the setting.. if I select 1 or 2 I do not show prices but my shopping cart goes away as well...
what is Ideal would be to show a price but when you click add to cart I can make it a lower price and not violate my MAP pricing... there is a site that is doing it with zen cart.. I emailed them hoping they share how too.... if you go to http://www.topdoggps.com/ and click on automotive GPS you will see what I am trying to go.. notice that he says for a lower proce add to cart...
thanks.. any help on this would be greatly appreciated......
Flux