![]() |
[For 1.8] Egosearch - activate an undocumented function of MyBB! - Printable Version +- MyBB Community Forums (https://community.mybb.com) +-- Forum: Resources (https://community.mybb.com/forum-8.html) +--- Forum: Tutorials (https://community.mybb.com/forum-38.html) +--- Thread: [For 1.8] Egosearch - activate an undocumented function of MyBB! (/thread-202370.html) |
[For 1.8] Egosearch - activate an undocumented function of MyBB! - Schrotti - 2016-09-21 One thing I missed in MyBB is a simple way to show the last discussions I have contributed to. Such an "egosearch" is very useful to avoid discussion backlog. A discussion about this motivated me to activate this function for my board. First see here how it looks: Now, how to do this: First, edit the template header_welcomeblock_member. Insert two lines (marked red): Quote: <li><a href="#" onclick="MyBB.popupWindow('{$mybb->settings['bburl']}/misc.php?action=buddypopup&modal=1', null, true); return false;">{$lang->welcome_open_buddy_list}</a></li> Then, edit the script inc/languages/english/global.lang.php: Here also two lines, marked red, need to be added: Quote:$l['welcome_open_buddy_list'] = "Open Buddy List";Note that I also changed two more lines to reduce screen messiness. Dark blue is the original (included but commented out for comparison). Light blue is the way I changed it to. Finally, if you use language packs, you'll have to update their global.lang.php accordingly. Just like you just updated the default english one. You see: Activating egosearch on MyBB is easy as a snap! Enjoy! RE: [For 1.8] Egosearch - activate an undocumented function of MyBB! - WallBB - 2016-09-21 Thanks for the tutorial, but it is already there in MyBB from a long time ![]() https://community.mybb.com/thread-65220.html RE: [For 1.8] Egosearch - activate an undocumented function of MyBB! - Schrotti - 2016-09-22 Thanks for the link! I didn't find that thread from 2010 when I searched first. Anyway that old thread does not offer a solution for multilingual boards, like the solution in this thread does... Just FYI to anybody who reads this thread. There is another tutorial [1.8] Keeping track made easy - Egosearch Extreme available now! ![]() It also implements the way phpBB does its egosearch! |