Quote:
Originally Posted by JohnBee
I was wondering.
Someone mentioned recently that the "My Posts" formatting is not quite as appealing as the Advanced Search "Username" results. Does anyone know if it's possible to get the same look and feel as the Advanced search with the "My Posts" addon?
|
What you mean is "threads I posted in"...
That will show you a list with all the threads you have posted in, ordered by the last post in it.
You can use this string to replace the one in "my posts":
Code:
search.php?do=process&showposts=0&starteronly=0&exactname=1&searchuser=$bbuserinfo[username]
However I believe when someone searches for 'their posts', it's more logical to show the latest posts, not the threads they posted in.
A better way to do it IMO would be to add the extra feature like mentioned above (threads I posted in) in the drop down menu:
FIND in navbar:
Code:
<tr>
<td class="vbmenu_option"><a href="search.php?do=process&showposts=0&starteronly=1&exactname=1&searchuser=$bbuserinfo[username]">My Threads</a></td>
</tr>
ADD BELOW:
Code:
<tr>
<td class="vbmenu_option"><a href="search.php?do=process&showposts=0&starteronly=0&exactname=1&searchuser=$bbuserinfo[username]">Threads I Posted in</a></td>
</tr>
So now you have the 3
-my posts (YOUR posts, listed as posts)
-my threads (threads YOU started, listed as threads)
-threads I posted in (threads you DIDN'T neccecairly start, but containing your posts, listed as threads)
Hope this makes sense to you