MyBB Community Forums

Full Version: [Request] Can we get Your Threads Your Posts links on this site?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Can this be implemented on community.mybb.com?

http://community.mybb.com/thread-65220.html

I think it would a simple and useful addition it very useful to have my own threads one click away, instead of having to get there from my profile, or by looking at 'View New Posts'.

I know you can view your Latest Threads from your User CP, but i still think that a link to all threads would be great.

Thanks.
In your profile, you have (Find All ThreadsFind All Posts)..

It's just ONE click away from you so don't be lazy Smile
here is a simple userscript for the required purpose
(it is for firefox + Greasemonkey users & Chrome users)

note : put actual user id for uid=abcdef eg. uid=29509

[Image: mylinks.png]

(above image link)

// ==UserScript==
// @name             my links
// @description     a couple of useful links for myBB community users
// @author           http://community.mybb.com/user-20397.html
// @version         1.0 (2011/11/18)
// @namespace      
// @include         http://community.mybb.com/*

// ==/UserScript==

// Usage: Edit the customhtml variable below to put required links  


( function () {

  var customhtml = 
   " | <a href=http://community.mybb.com/search.php?action=finduserthreads&uid=abcdef>My.Threads</a> | <a href=http://community.mybb.com/search.php?action=finduser&uid=abcdef>My.Posts</a> |"  ;

// widens links class block if required  
// GM_addStyle(".links {width: 600px !important;}"); 

  tds=document.getElementsByClassName('links');
  tds[0].innerHTML += customhtml;

})();

Thanks ranjani once, again. I will give that a try.