i spend days trying to figure this out and thankfully brian came through with the answer
so i wanted to share it with you
heres my full profile_header.tpl code
and i willl explain the easy ..super easy way to make this happen
{assign var="from_profile" value="yes"}
{jrCore_include template="header.tpl"}
{if $_post.option != "group"}
<div class="container profilecover" {if $profile_z == 'on'}id="profile_z"{/if}>
{if isset($profile_cover_image_size) && strlen($profile_cover_image_size) > 0}
{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_cover_image" item_id=$_profile_id size="xxxlarge" class="img_scale" alt=$profile_name title=$hover width=false height=false}{/if}
{if !isset($_conf.sebuildmynewninja_forum_profile) || strpos($current_url, $_conf.sebuildmynewninja_forum_profile) !== 0}
<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}
{if jrUser_is_master()}
{jrCore_item_delete_button module="jrProfile" view="delete_save" profile_id=$_profile_id item_id=$_profile_id title="Delete this Profile" prompt="Are you sure you want to delete this profile?"}
{/if}
</div>
<a href="{$jamroom_url}/{$profile_url}"><h1 class="profile_name">{$profile_name}</h1></a>
</div>
</div>
</div>
<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}
{/if}
<div class="row">
{if $profile_disable_sidebar != 1}
{jrCore_include template="profile_sidebar.tpl"}
{/if}
{* next <div> starts in body *}
now theres a few things diferent from yours
{if $_post.option != "group"}
<div class="container profilecover" {if $profile_z == 'on'}id="profile_z"{/if}>
{if isset($profile_cover_image_size) && strlen($profile_cover_image_size) > 0}
{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_cover_image" item_id=$_profile_id size="xxxlarge" class="img_scale" alt=$profile_name title=$hover width=false height=false}{/if}
and the closing if just before the div class row at the end
most of thats my custom profile cover photo code (see my other tips)
the only parts u need to worry about is
{if $_post.option != "group"}
{/if}
to disable profile headers on group pages find
<div class="container">
just above that paste
{if $_post.option != "group"}
{if $_post.option != "group"}
<div class="container">
then find at the very bottom
<div class="row">
{/if}
<div class="row">
then apply the changes clear cache and go look at your newly perfected groups... and smile just like i did when i finaly got mine right
--
soaringeagle
head dreadhead at dreadlocks site
glider pilot student and member/volunteer coordinator with freedoms wings international soaring for people with disabilities
updated by @soaringeagle: 07/09/16 09:21:02AM