The “Hide portion(s) of post text” would work but this is a static page, so I dont “think” that it would work. I wouldn’t mind editing the php. I guess what I am looking for is actually written in the wp-comments-post.php as:
// If the user is logged in
get_currentuserinfo();
if ( $user_ID ) :
$comment_author = $wpdb->escape($user_identity);
$comment_author_email = $wpdb->escape($user_email);
$comment_author_url = $wpdb->escape($user_url);
else :
if ( get_option(‘comment_registration’) )
die( __(‘Sorry, you must be logged in to post a comment.’) );
endif;
I just need to figure out how to edit this and include it in my webcam.php static page.