MyBB Community Forums

Full Version: Show Posts and Threads made in Member's profile
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Excuse me,

To all people here, masters, experts,

is there any way to show the posts and threads made by a user in his/her own profile, without redirected to the search page?

Thank you
^ Curious of the same!
I am using this plugin with some front-end edits https://mods.mybb.com/view/last-user-s-t...in-profile

Demo: http://sharree.com/user-1.html (Switch to posts tab)
I agree with Sharree that plugin will be the best bet for this sorta thing.
@Sharree as I am no good with PHP or anything involved, trying to edit that to suit my needs would not work out for me.

I've been searching for a plugin just like this for quite some time, however I found no luck in my search besides that exact plugin you have suggested.

https://community.mybb.com/thread-206730.html
(2016-12-21, 11:58 PM)Nicole-Studios Wrote: [ -> ]@Sharree as I am no good with PHP or anything involved, trying to edit that to suit my needs would not work out for me.

I've been searching for a plugin just like this for quite some time, however I found no luck in my search besides that exact plugin you have suggested.

https://community.mybb.com/thread-206730.html

That is probably the best plugin to use for this but if you needed further edits you would need to edit the PHP code or work with HTML and the templates to make it more user friendly.
As stated in my thread I linked, this only shows posts made in threads by them.

I need a plugin to show all posts they've made across the board, even in threads not created by them.
(2016-12-22, 12:23 AM)Nicole-Studios Wrote: [ -> ]As stated in my thread I linked, this only shows posts made in threads by them.

I need a plugin to show all posts they've made across the board, even in threads not created by them.

You'd need that to then go across pages otherwise you'd have massive profiles. I might convert the original project over to 1.8 and modify it to suite the needs of people more.
Quote:I need a plugin to show all posts they've made across the board, even in threads not created by them.
Ive done this on my forum.....but with core edits. Its called an egosearch, any post made by X user....it lists out those threads. Its intended for that user searching their own posts, but anyone can search that users posts as well via link

this details the process of making a link in the topbar, but you dont have to have the top link. But you need to create the if condition.
https://community.mybb.com/thread-202442.html

However you can remove this part
&& $mybb->request_method == "post"
and you can link the URL such as
www.YOUR_WEBSITE.com/search.php?action=finduserthreads2&uid=1
where 1 is the UID of the user you want to search.

Going to this link will show you a list of threads that user posted in

EDIT:
you can also do

http://www.YOUR_WEBISTE.com/search.php?action=finduserthreads2&user=USERNAME


where USERNAME is the user you are searching for.
Would it be possible to list threads only from specific forums?