MyBB Hacks

Full Version: userbar mod
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am looking for userbars mod.
It's required 'cause of problem of huge userbars and low speed of image hosters.
Required features
1. Userbars should be hosted only on forum hosting  in uploads/userbars/xxxx.jpg where xxxx is user id.
2. Users can upload their userbars in UserCP with overwriting old ones on upload, and there shold be option in UserCP to turn off (disable) userbar.
3. Userbars should have restrictions by size and by file type (jpg,gif,png,etc).
4. It should be displayed after signature only for registered users.

that's all
thx
Did someone saw something like this?
Cause i'm sure it's impossible for me to write it myself.
This isn't the easiest thing to make.
You could just use the avatar system instead?
ZiNgA BuRgA Wrote:This isn't the easiest thing to make.
You could just use the avatar system instead?

Userbars are required by forum specifics Frown
If you don't need avatars, you can easily turn the avatar system into a userbar system.
Just move the avatar from it's position in the side, to under (or above) a user's signature.  Then you can also change the language variables from "avatar" to "userbar".

Dunno if that helps.
i think Profile Picture mod from Lex is smth i was looking for
is it possible to make a hook for postbit in this plugin?
I haven't seen the mod, but I'm going to guess all you'll need to do is insert something like this in the postbit template

Code:
{$post['picture']}

(replace picture with the appropriate name)

ZiNgA BuRgA Wrote:I haven't seen the mod, but I'm going to guess all you'll need to do is insert something like this in the postbit template

Code:
{$post['picture']}

(replace picture with the appropriate name)


That's Profile Picture plugin
Try adding something like:

HTML Code
<img src="{$post['pp']}" alt="" />

Note that it's a little dimension unsafe, but meh - signatures have the same problem anyway...

thanx a lot
it just required to create new template and editing functions_post.php for checking on absent userbar (stupid IE shows errors)
Reference URL's