price for login customer only

is there anyway that i can show the price for login wholesaler customer only?

1 answer

Profile photo of thangnn1510 0.00 $tone December 20, 2010
Public

is there anyway that i can show the price for login wholesaler customer only?

Dear Johnpark!

to show price only for wholesale customer only, plz do the following steps:

-- Open app\design\frontend\default\jm_natristemplate\joo mlart\jmproducts\list.phtml

change this code:

PHP Code:

<?php echo $this->getPriceHtml($_product,true'_jmproduct'?>


To:

PHP Code:

<?php if(Mage::getSingleton('customer/session')->getCustomerGroupId() ==2): ?>
                    <?php echo $this->getPriceHtml($_product,true'_jmproduct'?>
                    <?php endif; ?>


-- Open: app\design\frontend\default\jm_natristemplate\cat alog\product\list.phtml

PHP Code:

<?php echo $this->getPriceHtml($_producttrue?>


To:

PHP Code:

<?php if(Mage::getSingleton('customer/session')->getCustomerGroupId() ==2): ?>
                    <?php echo $this->getPriceHtml($_producttrue?>
                    <?php endif; ?>


Hope this helps you .

#1

Please login or Register to Submit Answer

Written By

Comments