If we have to hide prices for guest users everywhere.
We just have to follow below steps-
Openapp/design/frontend/base/default/template/catalog/product/
folder and copy price.phtml file to the app/design/frontend/theme_package/your_theme/template/catalog/product/
folder and then Place the following code on top of it:
1 2 3 4 | if (!Mage::getSingleton( 'customer/session' )->isLoggedIn()){ echo '<span class="login_for_price"><strong>Login to See Price</strong></span><br>' ; return ; } |
No comments:
Post a Comment