Hi, to do that, I think the

Posts: 489
Joined: 08/13/2007
Bug FinderEarly adopter... addicted to alphas.Getting busy with the Ubercode.Internationalizationizer

Hi,

to do that, I think the best way to proceed is to redeclare the theme_uc_product_display_price in your template.php file and make a condition with the user role to show the price only for certain authentificated users.

To test if the user is logged, you can make the conditions on the $user->uid

<?php
global $user;
if (
$user->uid) {
// Show price
} else {
// hide price
}
?>

Add to cart button By: surbir (14 replies) Sun, 02/10/2008 - 16:49