They used to work fine until one day the code magically, inexplicably, disappeared. This was the code.
{* Begin About User Section *}
{if !jrCore_is_mobile_device()}
{jrCore_list module="jrUser" profile_id=$_profile_id template=$aboutuser_row assign="abtuser"}
{if isset($abtuser) && strlen($abtuser) > 0}
<div class="block">
<h3>About</h3>
<div class="block_content mt10">
<div style="padding-top:8px;">
{$abtuser}
</div>
</div>
</div>
{/if}
{/if}
{* End About User Section *}
{* Begin User Website *}
{if !jrCore_is_mobile_device()}
{jrCore_list module="jrUser" profile_id=$_profile_id template=$userweb_row assign="userweb"}
{if isset($userweb) && strlen($userweb) > 0}
<div class="block">
<h3>Website</h3>
<div class="block_content mt10">
<div style="padding-top:8px;">
{$userweb}
</div>
</div>
</div>
{/if}
{/if}
{* End User Website *}
So I opened a support ticket and Brian came up with a similar code which seemed to work (and stay put).
{* Begin About User Section *}
{capture name="aboutuser" assign="aboutuser_row"}
{literal}
{if isset($_items)}
{foreach $_items as $item}
{$item.user_signup_question_2}
{/foreach}
{/if}
{/literal}
{/capture}
{jrCore_list module="jrUser" profile_id=$profile_id template=$aboutuser_row assign="abtuser"}
{if isset($abtuser) && strlen($abtuser) > 0}
<div class="block">
<h3>About</h3>
<div class="block_content mt10">
<div style="padding-top:8px;">
{$abtuser}
</div>
</div>
</div>
{/if}
{* End About User Section *}
Then after several weeks my old code magically, inexplicably, returned. So I had two codes and the same info repeating twice in my left columns (see attached screenshot). I then deleted my (returned) code manually, since I was unable to delete Brians. When I tried to delete Brian's and leave my original, I saw an error about missing templates (click link).
https://indiegospel.net/image/img/module/jrImage/Error.JPG?r=2001673720
However, while checking this out I stumbled across a problem I had not noticed before. My left column info (from the editors) is only showing when logged in. It disappears when I am logged out.
I do not understand why or how to fix it.
--
Ken Rich
indiegospel.net
updated by @ken-rich: 03/28/17 01:40:54AM