PDA

View Full Version : Manipulating post counts in the profile (member block)?


BirdOPrey5
12-08-2010, 05:41 PM
I have a plugin running on member_complete, I'm trying to edit the post count displayed in statistics...

I've tried $userinfo[posts] which I saw in an old VB 3.5 plugin doing something similar and also $prepared[posts] which is direct from the memberinfo_block_statistics template.

But I can't seem to edit the value like I can the postcount in the postbit or any other data field elsewhere in vbulletin....

Basically if I put
$prepared[posts] = $x
on the member_complete plugin I'd expect vBulletin to show the value of $x instead of the post count in the profile stats but it doesn't.

I've tried most of the member_* hooks and no luck on any of them although member_built_blocks_start will change the value of $prepared[posts] but the value of $prepared[posts] at the start of the plugin seems to always be zero despite the actual value.

Anyone know off hand what I'm doing wrong? :confused:

Lynne
12-08-2010, 10:22 PM
member_profileblock_fetch_unwrapped works.

BirdOPrey5
12-08-2010, 11:03 PM
Thanks Lynne... I went all though the hooks in member.php but didn't think to look at the hooks in the included files... :( But thank you again. :)

Lynne
12-09-2010, 03:06 AM
I actually just did a search in my files for where $prepared was prepared and the hook was called right above there. :)