PDA

View Full Version : Search link for "threads I've replied to" and "my started threads"


michelle86
11-04-2010, 10:48 PM
So www.mysite.com/search.php?do=getdaily is used to find posts from the last 24 hours

and www.mysite.com/search.php?do=getnew is used to find all new unread posts

What do I need to show "threads I've replied to" and "my started threads"

I would like to make these easy to find for my members.

I found solutions for earlier versions of vbulletin, but they did not work for me. I have vb 4.0.8

michelle86
11-13-2010, 05:06 AM
anyone?

Fusion2
11-13-2010, 03:52 PM
I would like to make these easy to find for my members.

I found solutions for earlier versions of vbulletin, but they did not work for me. I have vb 4.0.8


So many ways to do this:

1. Add links to navbar

2. Add links to Tab

3. Add links anywhere you want them to be


You can also set navbar link to show all the time for users. So you could create a navbar called "my activity" with links to "my post" "my blog" "my profile" "my thread etc.

michelle86
11-13-2010, 04:52 PM
Yes, I already know how to place the links in the navbar and anywhere else on my site that I want to. That's not what I'm asking.

I don't know how to form the search link to show someone their started threads or posts they have replied to.

YankForum
11-13-2010, 05:06 PM
THIS MIGHT HELP :
http://www.YOURFORUMPATH.com/search.php?do=finduser&userid=ENTERUSERID&starteronly=1&contenttype=vBForum_Thread

michelle86
11-13-2010, 05:14 PM
I can't put a specific userid because when the person is logged in, I want them to be able to click the link and have it take them to THEIR OWN started threads as well as have a link that takes them to posts that they have replied to.

YankForum
11-14-2010, 03:46 AM
you can use this :
{vb:raw bbuserinfo.userid}
so your whole link would look like this , just replace your forum link :
http://www.yourforumpath.com/search.php?do=finduser&userid={vb:raw bbuserinfo.userid}&starteronly=1&contenttype=vBForum_Thread

michelle86
11-14-2010, 04:28 AM
THANK YOU YankForum! That was exactly what I meant :)

It worked! It shows all the threads a user has started in descending order.

Is there a way to have it display the threads they have participated in? Or is there no way to do that?

--------------- Added 1289722217 at 1289722217 ---------------

By the way, I changed it to this:

http://www.yourforumpath.com/search.php?do=finduser&userid={vb:raw bbuserinfo.userid}&starteronly=1&contenttype=vBForum_Post

(changed "Thread" to "Post")

When it said Thread, for some reason it left out some of the threads I had started. Changed it to Post, and that fixed the problem.

Still trying to figure out how to have it display the threads you have participated in (whether you started them or not).

YankForum
11-14-2010, 07:18 AM
Still trying to figure out how to have it display the threads you have participated in (whether you started them or not).
same url except that u need to change "starteronly=1" to "starteronly=0" ( true changes to not true )