Hi - Welcome to the Jamroom forums.
In your skins profile_header.tpl test for the Community profile and if true, don't show the top bar. Then, if the viewer/user is not the profile owner or admin, don't show the profile menu bar either -
{jrCore_include template="header.tpl"}
<div class="container">
{if $profile_id != 2}
<div class="row">
<div class="col12 last">
<div class="profile_name_box">
<div class="block_config" style="margin-top:3px">
{jrCore_module_function function="jrFollower_button" profile_id=$_profile_id title="Follow This Profile"}
{jrCore_item_update_button module="jrProfile" view="settings/profile_id=`$_profile_id`" profile_id=$_profile_id item_id=$_profile_id title="Update Profile"}
{if jrUser_is_admin() || jrUser_is_power_user()}
{jrCore_item_create_button module="jrProfile" view="create" profile_id=$_profile_id title="Create new Profile"}
{/if}
{jrProfile_delete_button profile_id=$_profile_id}
</div>
<a href="{$jamroom_url}/{$profile_url}"><h1 class="profile_name">{$profile_name}</h1></a>
</div>
</div>
</div>
{/if}
{if $profile_id != 2 || jrProfile_is_profile_owner($profile_id)}
<div class="row">
<div class="col12 last">
<div class="profile_menu">
{if jrCore_is_mobile_device()}
{jrProfile_menu template="profile_menu_mobile.tpl" profile_quota_id=$profile_quota_id profile_url=$profile_url}
{else}
{jrProfile_menu template="profile_menu.tpl" profile_quota_id=$profile_quota_id profile_url=$profile_url}
{/if}
</div>
</div>
</div>
{/if}
<div class="row">
{if $profile_disable_sidebar != 1}
{jrCore_include template="profile_sidebar.tpl"}
{/if}
hth
--
Paul Asher - JR Developer and System Import Specialist
updated by @paul: 01/15/16 12:33:12AM