Change "Find all posts by user" results

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • John Miller
    Senior Member
    • May 2005
    • 191
    • 3.5.x

    Change "Find all posts by user" results

    Is it possible to change the search results display for "Find all posts by user" appear as "Find all threads started by user" search results ?
  • TygerTyger
    Senior Member
    • Aug 2005
    • 606
    • 3.6.x

    #2
    Change them how? If you want to find all threads started by the user, just use that option? It's right underneath the find all posts option in a person's profile.

    Comment

    • peterska2
      Senior Member
      • Oct 2003
      • 8869
      • 3.7.x

      #3
      Ok, in your memberinfo template find

      Code:
      <a href="search.php?$session[sessionurl]do=finduser&amp;u=$userinfo[userid]" rel="nofollow">
      Replace with

      Code:
      <a href="search.php?$session[sessionurl]do=process&amp;showposts=0&amp;starteronly=0&amp;exactname=1&amp;searchuser=$userinfo[urlusername]" rel="nofollow">
      In your postbit (or postbit_legacy) template find

      Code:
      <a href="search.php?$session[sessionurl]do=finduser&amp;u=$post[userid]" rel="nofollow">
      replace with

      Code:
      <a href="search.php?$session[sessionurl]do=process&amp;showposts=0&amp;starteronly=0&amp;exactname=1&amp;searchuser=$post[urlusername]" rel="nofollow">
      those should work.

      Comment

      • peterska2
        Senior Member
        • Oct 2003
        • 8869
        • 3.7.x

        #4
        Originally posted by TygerTyger
        Change them how? If you want to find all threads started by the user, just use that option? It's right underneath the find all posts option in a person's profile.
        To change the display of the results like that of the threads or regular search results instead of them displaying as posts.

        Comment

        Related Topics

        Collapse

        Working...