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
}
?>


Joined: 08/13/2007