MyBB Hacks

Full Version: username modifications
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
is it possible to modify the user names in the post bit so it has a drop down when you click on their user name like with vbulletin?
Old, but you could probably do something similar.

http://mybbhacks.zingaburga.com/showthread.php?tid=70

Test it yourself and use at your own risk.
I think DragonFever had made something similar to this. search the http://mods.mybb.com/mods yourself.
Imran is correct - you can change compatibility and it works fine.
(08-21-2010 11:35 PM)leefish Wrote: [ -> ]Imran is correct - you can change compatibility and it works fine.

Lee,

thanks..I installed it..please see this post:
http://community.mybb.com/thread-76564-p...http://community.mybb.com/thread-76564-post-560444.html

having an issue where it pushes the online status to a new line.
Yes, that's an issue with this plugin. Online status icon is below the username on postbit.
I think we can do this in template level, something like this?

HTML Code
<strong><span class="largetext"><a href="{$post['profilelink_plain']}" id="profile_{$post['pid']}">{$post['username_formatted']}</a></span></strong> {$post['onlinestatus']}<br />
<div id="profile_{$post['pid']}_popup" class="popup_menu" style="display: none;">
	<div class="popup_item_container">
		Contents 1
	</div>
	<div class="popup_item_container">
		Contents 2
	</div>
</div>


And javascript:

Javascript Code
<script type="text/javascript">
// <!--
	if(use_xmlhttprequest == "1")
	{
		new PopupMenu("profile_{$post['pid']}");
	}
// -->
</script>

rateu, where in the template does the html go and where does the javascript go?
I don't want to be offensive, but seriously, figure it out yourself.  Plug it in random spots until you figure out how it works.  If you don't grow the balls to try it out, you'll never learn.

I'm starting to get sick and tired of people running forums, and wanting to do elaborate modifications without HTML/CSS knowledge.  I don't expect the clueless webmaster to know scripting of any kind (PHP, Javascript etc), however being competent in HTML and CSS is a must if you want to fiddle around with these things.
It's like applying for an accounting job when you can't even add numbers together.
(08-23-2010 02:28 PM)ZiNgA BuRgA Wrote: [ -> ]I don't want to be offensive, but seriously, figure it out yourself.  Plug it in random spots until you figure out how it works.  If you don't grow the balls to try it out, you'll never learn.

I'm starting to get sick and tired of people running forums, and wanting to do elaborate modifications without HTML/CSS knowledge.  I don't expect the clueless webmaster to know scripting of any kind (PHP, Javascript etc), however being competent in HTML and CSS is a must if you want to fiddle around with these things.
It's like applying for an accounting job when you can't even add numbers together.

I'm competent in html/css, but I'm not very familiar with the mybb templates.  

ps- I did get it working..thanks rateu for posting what you did...maybe I'll write up a tutorial for it and post it on mybb..so others can benefit from it.
Pages: 1 2
Reference URL's