Testing the option to display answers to old sign up questions
Ning To Jamroom
Checkout the Ninja profile_sidebar.tpl template. About line 47 is the code that shows the questions and answers -
{if jrUser_is_logged_in() && $_conf.jrNinja_profile_questions == 'on'}
{jrNingImport_signup_questions user_id=$_user_id assign="ning_questions"}
{if isset($ning_questions)}
<div class="block">
<div class="block_content mt10">
{$ning_questions}
</div>
</div>
{/if}
{/if}
Next look at the NingImport module signup_questions.tpl template. See of line 11 -
<h4>{$item.label}:</h4> {$item.answer}<br>
{if strlen($item.answer) > 0}
hth