Lynne,
Thanks for your continued help. I enabled template name in HTML comments, went to one of the troublesome pages (in this case, the inbox) and learned that where it said "Array" over and over again is in "pm_messagelistbit." Though I have found that template in the editor within AdminCP, I am unsure of how to proceed...
Code:
<li class="blockrow pmbit" id="pm_{vb:raw pm.pmid}">
<div class="datetime">
<label for="pm_imod_checkbox_{vb:raw pmid}">{vb:raw pm.senddate} <span class="time">{vb:raw pm.sendtime}</span> <vb:if condition="$show['pmcheckbox']"><input type="checkbox" name="pm[{vb:raw pmid}]" id="pm_imod_checkbox_{vb:raw pmid}" value="{vb:raw groupid}" /></vb:if></label>
</div>
<img src="{vb:stylevar imgdir_statusicon}/pm_{vb:raw pm.statusicon}.png" class="threadicon" alt="" />
<vb:if condition="$show['pmicon']">
<img src="{vb:raw pm.iconpath}" class="posticon" alt="{vb:raw pm.icontitle}" />
</vb:if>
<vb:if condition="!$show['unread']">
<a href="private.php?{vb:raw session.sessionurl}do=showpm&pmid={vb:raw pm.pmid}" class="title">{vb:raw pm.title}</a>
<ol class="commalist">{vb:raw userbit}</ol>
<vb:else />
<span class="unread">
<a href="private.php?{vb:raw session.sessionurl}do=showpm&pmid={vb:raw pm.pmid}" class="title">{vb:raw pm.title}</a>
</span>
<ol class="commalist">{vb:raw userbit}</ol>
</vb:if>
<hr class="none" />
</li>
Edit 1: figured it out. I replaced "vb:raw userbit}" with the following code. Let's hope the same strategy works on other areas of the site that are affected. I'll keep you updated.
Code:
<ol class="commalist">
<vb:each from="userbit" value="row">
<li><a href="{vb:link member|js, {vb:raw row}}" class="username understate">{vb:raw row.username}</a>{vb:raw row.comma}</li>
</vb:each>
</ol>
Edit 2: To be honest, I'm not sure how to go about fixing this next one. As I've mentioned before, my vBulletin knowledge is low when it comes to templates. The following is on a profile page where it says "The last 10 visitors to this page were ..." but it only says "Array."
Code:
<div class="visitors">
<h5 class="blocksubhead userprof_blocksubhead smaller">{vb:rawphrase recent_visitors}</h5>
<div class="blockbody userprof_content userprof_content_border">
<div class="blockrow member_blockrow">
<vb:if condition="$block_data['visitorcount'] > 0">
<div class="meta">
{vb:rawphrase last_x_visitors, {vb:raw block_data.visitorcount}}
</div>
<ol class="commalist">
{vb:raw block_data.visitorbits}
</ol>
</vb:if>
<span class="totalvisits">{vb:rawphrase this_page_has_x_visits, {vb:raw prepared.profilevisits}}</span>
</div>
</div>
</div>