Thanks Kai
This module works fine with the stock UC catalog/product page setup but for those using a custom template like the Nifty Product Tutorial http://www.ubercart.org/forum/development/3868/nifty_products_tutorial_p... You'll need to make some small modification to your template. You will need to check for '#access' in the template.
Normally you would use something link this to print the product info to the template
<?php print $node->content['sell_price']["#value"]; ?>
In order for the module to work properly and allow/disallow access to product info you'll have to something like this
<?php if($node->content['sell_price']["#access"]) { print $node->content['sell_price']["#value"];} ?>
Arek



Joined: 01/11/2008