OG Image Issues
Using Jamroom
Oops the isset wasn't working. Switched it out with this and BINGO.
{if $current_url == "{$jamroom_url}/{$profile_url}"}
So now my mod to the meta.tpl is actually this else statement:
{if isset($meta)}
{foreach from=$meta key="mname" item="mvalue"}
<meta name="{$mname}" content="{$mvalue}" />
{/foreach}
{else}
{if $current_url == "{$jamroom_url}/{$profile_url}"}
{jrCore_include template="profile_meta.tpl"}
{/if}
{/if}