MyBB Community Forums

Full Version: White blocks in profile
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: 31e6ba7dc3198cae13761cd23e53bacb.png]

How to fix?
In the template:
1. newpoints_shop_profile (template --> global templates)
Find:
<tr>
<td class="trow2"><strong>Items:</strong></td>
<td class="trow2">This user has no items. <span class="smalltext">(<a href="newpoints.php?action=shop&amp;shop_action=myitems&amp;uid=16">View All Items</a>)</span></td>
</tr>

and replace:

<tr>
<td class="trow2">
<div class="col-sm-3"><strong>Items:</strong></div>
<div class="col-sm-9">This user has no items. <span class="smalltext">(<a href="newpoints.php?action=shop&amp;shop_action=myitems&amp;uid=16">View All Items</a>)</span></div>
</td>
</tr>

2. newpoints_profile (in global templates)

Find:
<tr>
<td class="trow2"><strong>Currency:</strong></td>
<td class="trow2"><a href="newpoints.php">16¢</a><!-- start: newpoints_donate_inline -->
<span class="smalltext">[<a href="newpoints.php?action=donate&amp;uid=16">Donate</a>]</span>
<!-- end: newpoints_donate_inline --></td>
</tr>

and replace:

<tr>
<td class="trow2">
<div class="col-sm-3"><strong>Currency:</strong></div>
<div class="col-sm-9"><a href="newpoints.php">16¢</a><!-- start: newpoints_donate_inline -->
<span class="smalltext">[<a href="newpoints.php?action=donate&amp;uid=16">Donate</a>]</span>
<!-- end: newpoints_donate_inline --></div>
</td>
</tr>


Remember to replace variable accordingly.