how can we view influences on a profile????
Using Jamroom
Its probably best just to add a profile_influences field to the profile update form using the Form Designer, then, to the profile_sidebar.tpl template, add something like -
{if isset($profile_influences) && strlen($profile_influences) > 0}
<div class="block">
<h3>Influences</h3>
<div class="block_content mt10">
<div style="padding-top:8px;">
<span class="highlight-txt bold">{$profile_influences}</span><br>
</div>
</div>
</div>
{/if}
hth