2007-07-23, 02:52 PM
http://mods.mybboard.net/view.php?did=597
Skunk medals currently only display the medals in the postbit, I would like them also to be displayed in the Member Profile page (member.php).
This should be a quick fix for those who know how this stuff works. I have been looking at the code, but I don't know what the names of various things are. Where is the documentation so that I might be able to make the adjustments myself?
It looks like I just need to hook the part of the member page where I want them to go and use the same function.
I've never done this before, so I am trying to interpret the code. Documentation would be handy... heh. But like I said, this is a really easy mod for someone who knows what they are doing.
Thanks for any help you can give,
-Xander
Skunk medals currently only display the medals in the postbit, I would like them also to be displayed in the Member Profile page (member.php).
This should be a quick fix for those who know how this stuff works. I have been looking at the code, but I don't know what the names of various things are. Where is the documentation so that I might be able to make the adjustments myself?
It looks like I just need to hook the part of the member page where I want them to go and use the same function.
$plugins->add_hook("postbit", "get_medals");
Add the activate/deactivate code similar to this://Find and replace on Templates to add the Medals
find_replace_templatesets("postbit", '#'.preg_quote('{$post[\'user_details\']}').'#', '{$post[\'user_details\']} {$post[\'medals\']}');
I've never done this before, so I am trying to interpret the code. Documentation would be handy... heh. But like I said, this is a really easy mod for someone who knows what they are doing.
Thanks for any help you can give,
-Xander