Re: Auction Product Type... Buy Now Price Display only for logged-in visitors
Our site prefers users to be logged in to see any pricing. The most recent offering price is not a problem... works fine. However, the BuyNow price shows all the time (unless, of course, no value is entered in that field). Admin/Configuration/Customer Details/Customer Shop Status- View Shop & Prices setting has no effect on this price display. What will I have to modify so this option is functional?
Any suggestions are helpful.
Peter
Re: Auction Product Type... Buy Now Price Display only for logged-in visitors
Quote:
Originally Posted by
TSRCatalog
Our site prefers users to be logged in to see any pricing. The most recent offering price is not a problem... works fine. However, the BuyNow price shows all the time (unless, of course, no value is entered in that field). Admin/Configuration/Customer Details/Customer Shop Status- View Shop & Prices setting has no effect on this price display. What will I have to modify so this option is functional?
Any suggestions are helpful.
Peter
Strange.... I see what you mean. The code is the same as non auction products so the price should behave the same way, the button is removed for me, but the price stayed.... so until I can look depper at this, a walk around would to change this line in includes\templates\YOUR_TEMPLATE\templates\tpl_product_auction_info_display.php around line 170
Code:
if (CUSTOMERS_APPROVAL == 3 and TEXT_LOGIN_FOR_PRICE_BUTTON_REPLACE_SHOWROOM == '')
to this
Code:
if (CUSTOMERS_APPROVAL == '2' or TEXT_LOGIN_FOR_PRICE_BUTTON_REPLACE_SHOWROOM == '' or CUSTOMERS_APPROVAL == '3')
That should keep that section of code from showing unless they are logged in.