Quote:
Originally Posted by vbboarder
Bug: when you update to VB 3.8, the messages are not highlighted when selected and the 'Go' button does not update with the # of messages selected. Also, the checkbox to select all messages do not work.
Solution: The gtpm_messagelistbit template needs to be updated with 2 changes to be VB 3.8 compatible. Go to 'Style Manager' -> 'Edit Templates' -> click on gtpm_messagelistbit and FIND:
Code:
<td class="alt1Active" id="m$pm[pmid]" width="100%">
.
REPLACE WITH:
Code:
<td class="alt1 alt1Active" id="m$pm[pmid]" width="100%">
.
FIND:
Code:
<input type="checkbox" name="pm[$pmid]" value="$groupid" />
.
REPLACE WITH:
Code:
<input type="checkbox" name="pm[$pmid]" id="pmlist_$pmid" value="$groupid" />
.
That's it! Now selected messages should be highlighted, the 'Go' button should update, and the check-all checkbox should work. Hope that helps 
|
Hi there!
Doesn't seem to work for me. The described error occurs after upgrading to vB 3.8.2 and making the template changes described in your post.
Edit: Sorry - I forgot to update my templates after upgrading 3.7.5 -> 3.8.2 - Works perfectly now thanks! After the update the first thing the members commented on negatively was that the advanced PM listing was gone. They will be glad to see it's back!