LinuxUK
   Home About us Design services Get in Touch Testimonails Create and account / Log in
Categories
 Templates

 Security checks

 Support Club

 Tips and Tricks

 How to guides osC

 My Contributions

 osCommerce versions

 Base64 Decoder

 Link to us!

Log in to view prices
Product stats Product Stats
Products name Product Name: Log in to view prices
Products model Model: Hide Prices
Products info Product description

There are loads of contributions on the Forums however most are long winded and pretty much confusing for what should be a simple task, if you know the code!

This mod replaces the price with the message "log in to view prices" its a holistic approach to change all prices, once the user logs in they will see the prices.
The function to alter is found in catalog / includes / classes / currenices.php
lines 72 & 73

      function display_price($products_price, $products_tax, $quantity = 1) {
      return $this->format($this->calculate_price($products_price, $products_tax, $quantity));

The code to use already exists in osCommerce, so all we have to do is borrow it and add an IF statement

    tep_session_is_registered('customer_id')

To this all we have to do is add an IF statement, like this...

    function display_price($products_price, $products_tax, $quantity = 1) {
    if (tep_session_is_registered('customer_id')){
      return $this->format($this->calculate_price($products_price, $products_tax, $quantity));
    }
        {
 return '<b>Log in for prices</b>';
        }
  
}

The code reads, IF the customer has logged in then show the prices, ELSE display the message (you can change this message to suit your needs).
This will take you all of two minutes.

 

 

Reviews

Log in to view prices - TITLE_DEL_ICIO_US Log in to view prices - TITLE_DIGG Log in to view prices - TITLE_YAHOO_MYWEB Log in to view prices - TITLE_SPURL Log in to view prices - TITLE_FURL Log in to view prices - TITLE_ASK Log in to view prices - TITLE_SQIDOO Log in to view prices - TITLE_SIMPY Log in to view prices - TITLE_REDDIT Log in to view prices - TITLE_MA_GNOLIA Log in to view prices - TITLE_FACEBOOK_BOOKMARK Log in to view prices - TITLE_GOOGLE_BOOKMARK