How do I make the profile_sidebar.tpl section to hide when a profile page is viewed.
Design and Skin Customization
At the bottom of your profile_index.tpl you should see this code unless you've modified it already:
{jrCore_include template="profile_sidebar.tpl"}
Change that code to this:
{if !jrCore_is_mobile()}
{jrCore_include template="profile_sidebar.tpl"}
{else}
{if $_post.option != 'blog' || $_post.module != 'jrAction'}
{jrCore_include template="profile_sidebar.tpl"}
{/if}
{/if}
Hope this helps!
updated by @douglas: 08/17/20 05:38:58AM