MyBB Community Forums

Full Version: Is there a mod for...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a mod for showing a user's post and thread in the area where it says view Today's Posts?

Is there a mod for managing how long a thread stays a sticky?

Is there a mod that sends the person who created the thread if the thread was moved to a certain subforum?

Is there a mod that moves a thread to another forum when they click the delete button?
1. Add the following code in "header_welcomeblock_member" template for user's posts;
Your Post Count: {$mybb->user['postnum']}
But for Threads Count, you would need a plugin.

2. There was a similar plugin: http://www.mybbtalk.net/showthread.php?tid=415 But the site is not loading so I do not think it exists. However you may contact to its author: http://community.mybb.com/user-34294.html

3. No.
(2012-06-28, 04:37 AM)Yaldaram Wrote: [ -> ]1. Add the following code in "header_welcomeblock_member" template for user's posts;
Your Post Count: {$mybb->user['postnum']}
But for Threads Count, you would need a plugin.
What I mean was to view all their posts/thread, not their post counts.

(2012-06-28, 04:37 AM)Yaldaram Wrote: [ -> ]2. There was a similar plugin: http://www.mybbtalk.net/showthread.php?tid=415 But the site is not loading so I do not think it exists. However you may contact to its author: http://community.mybb.com/user-34294.html
Yea, they are no longer around. Sad

(2012-06-28, 04:37 AM)Yaldaram Wrote: [ -> ]3. No.
Darn.
Tell me someone has encountered some of these plugins somewhere.
Not quite sure what you mean with first. Here's a code for all posts made by the person who clicks it:
<a href="{$mybb->settings['bburl']}/search.php?action=finduser&uid={$mybb->user['uid']}">Your Posts</a>
All threads:
<a href="{$mybb->settings['bburl']}/search.php?action=finduserthreads&uid={$mybb->user['uid']}">Your Threads</a>
Add them to some template, preferably to header_welcomeblock_member

As for fourth, you can create moderation tool for that. I think you can't make button for it thought (didn't also see plugin), don't know what the href could be.
(2012-06-27, 09:46 PM)dalawh Wrote: [ -> ]Is there a mod that moves a thread to another forum when they click the delete button?

You could disable Users from Deleting threads, and require them to ask a Moderator to move them to wherever you want them to.
(2012-07-03, 01:41 AM)Destroy666 Wrote: [ -> ]Not quite sure what you mean with first. Here's a code for all posts made by the person who clicks it:
<a href="{$mybb->settings['bburl']}/search.php?action=finduser&uid={$mybb->user['uid']}">Your Posts</a>
All threads:
<a href="{$mybb->settings['bburl']}/search.php?action=finduserthreads&uid={$mybb->user['uid']}">Your Threads</a>
Add them to some template, preferably to header_welcomeblock_member

As for fourth, you can create moderation tool for that. I think you can't make button for it thought (didn't also see plugin), don't know what the href could be.
That was what I was looking for Big Grin Thanks.

(2012-07-04, 09:44 AM)Seabody Wrote: [ -> ]
(2012-06-27, 09:46 PM)dalawh Wrote: [ -> ]Is there a mod that moves a thread to another forum when they click the delete button?
That would be too much work for the staff.

You could disable Users from Deleting threads, and require them to ask a Moderator to move them to wherever you want them to.

(2012-07-04, 10:01 AM)Yaldaram Wrote: [ -> ]Try this: http://mybbhacks.zingaburga.com/showthread.php?tid=280
There seems to be a lot of bugs, but thanks for finding it for me.