Log in

View Full Version : Link to a user threads!


imk
11-19-2009, 10:55 PM
how can i link back to the list of a users threads?

obviously i want to make this into a useful link at the top of my forum

so they can click "My Threads" and it links to them!

--------------- Added 1258730794 at 1258730794 ---------------

..................

kh99
11-20-2009, 05:52 PM
Do you mean like this:

https://vborg.vbsupport.ru/search.php?do=finduser&u=176258&starteronly=1

(or maybe you mean subscribed threads):

https://vborg.vbsupport.ru/subscription.php

?

imk
11-20-2009, 09:50 PM
i mean

https://vborg.vbsupport.ru/search.php?searchid=14049195

imk
11-25-2009, 02:28 PM
any help?

kh99
11-25-2009, 03:09 PM
Well, I couldn't see what you meant in your previous post because the link just says "Sorry, no matches". If it's not one of the links I posted above, can you describe what you want in more detail?

Brandon Sheley
11-25-2009, 03:13 PM
any help?

post #2 gave you the link you can use :up:

imk
11-25-2009, 04:13 PM
<a href="https://vborg.vbsupport.ru/searc...&starteronly=1" target="_blank">https://vborg.vbsupport.ru/searc...&starteronly=1</a>

YES this - but if all members click this will they get that?

or do they need to put there member ID in?

kh99
11-25-2009, 04:27 PM
Oh, I see - the code from memberinfo_block_statistics template (which puts that link on the member profile page) is:

<a href="search.php?$session[sessionurl]do=finduser&amp;u=$userinfo[userid]&amp;starteronly=1" rel="nofollow">...</a>

Brandon Sheley
11-25-2009, 04:31 PM
https://vborg.vbsupport.ru/searc...&starteronly=1


YES this - but if all members click this will they get that?

or do they need to put there member ID in?

negative..

for one.. the link is truncated, so it's a dead link for us
and 2, the search ID links will only work for a few mins, then are removed

The link in post #2 will show the users threads, which is what you asked for ;)

imk
11-25-2009, 10:18 PM
what link?

the subscription link only show subscribed threads!

Lynne
11-25-2009, 11:00 PM
what link?

the subscription link only show subscribed threads!
The first link in the second post:
https://vborg.vbsupport.ru/search.php?do=finduser&u=176258&starteronly=1
or this:
search.php?$session[sessionurl]do=finduser&amp;u=$userinfo[userid]&amp;starteronly=1

(Change $userinfo[userid] to the variable you want for that page.)

Both have been posted a couple of times now.

imk
11-26-2009, 01:44 PM
can someone show me exact code i need please

basically i want to put a button on the skin saying "My Stuff"
when a member clicks it i want all their threads and posts to show.

Lynne
11-26-2009, 01:54 PM
<a href="search.php?$session[sessionurl]do=finduser&amp;u=$bbuserinfo[userid]&amp;starteronly=1">My Stuff</a>

kh99 already wrote this several posts up.

imk
11-26-2009, 10:19 PM
thanks alot!