How do I make the profile_sidebar.tpl section to hide when a profile page is viewed.
Design and Skin Customization
Thanks, it worked perfectly
{$profile_item_index_content}
{if $_conf.Mobile_profile_side == 'right'}
{jrCore_include template="profile_sidebar.tpl"}
{$last = 'last'}
{/if}
<section>
<div class="col4" style="background: #ffffff;
bottom: 0;
content: " ";
margin-left: -10px;
position: absolute;
top: 0;
width: 1px;"> {jrCore_include template="profile_sidebar.tpl"}
</div>
<div class="col6 last" style="margin-left=20px">
<div class="">
{$profile_item_index_content}
</div>
</div>
<div class="mobile">
<div class="title">
<h1>Producers</h1><br>
</div>
<br>
<!-------
<div class ="col2 last" >
<div class="desk" style="text-align: center;" >
<p class="desk" style=" color: rgba(103, 98, 98, 0.6);
font-style: italic;">Sponsored</p>
<p><a href="https://itembo.com/itemboservices"><img src="https://itembo.com/image/img/module/jrCore/beat_shop.jpg?r=412173812" alt="itembo Services" title="itembo services" style="margin: 0px;" width="300" height="750" border="1"></a></p>
</div>
</div>
----->
</section>
<div class="container">
{if isset($_items)}
{foreach from=$_items item="item"}
{if $item@first || ($item@iteration % 6) == 1}
<table>
{/if}
<tr class="{cycle values=""}">
<td class="page_table_cell center" style="width:10%;padding-bottom: 20px; border-radius: 5px;">{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$item._profile_id size="large" crop="portrait" class="img_scale" style="margin:0" alt="@`$item.profile_url`" title="@`$item.profile_url`"}</td>
<td class="page_table_cell" style="width:30%;padding-left:10px;vertical-align: text-top;font-size: 18px; font-weight: 600;"><a style="color: #151515d6" href="{$jamroom_url}/{$item.profile_url}");">{$item.profile_name}</a>
<br>
<div style="font-size: 13px;font-weight: lighter;color: #0000005e;">Joined {$item._created|jrCore_date_format:"relative"}</div>
<div> </div>
</td>
</tr>
{if $item@last || ($item@iteration % 6) == 0}
</table>
{/if}
{/foreach}
{/if}
</div>