Hi sm3yfx,
You should modify your theme file item.php
Depends on your theme, you should look for something similar to this
<strong class="share"><a href="<?php echo osc_item_send_friend_url() ; ?>" rel="nofollow"><?php _e('Share', 'modern') ; ?></a></strong>
To this one :
<?php if(osc_is_web_user_logged_in()) { ?>
<strong class="share"><a href="<?php echo osc_item_send_friend_url() ; ?>" rel="nofollow"><?php _e('Share', 'modern') ; ?></a></strong>
<?php }; ?>