Go Back   vb.org Archive > vBulletin Modifications > vBulletin 3.8 Modifications > vBulletin 3.8 Template Modifications
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
[find all threads started by x member] in postbit & postbit_legacy Details »»
[find all threads started by x member] in postbit & postbit_legacy
Version: 1.00, by fourat fourat is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Category: Show Thread Enhancements - Version: 3.8.x Rating:
Released: 04-07-2009 Last Update: Never Installs: 66
Template Edits
Code Changes  
No support by the author.

Its simple and work with all versions
Open postbit or postbit_legacy template and search for this code
Code:
<if condition="$show['search']">
        <tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=finduser&amp;u=$post[userid]" rel="nofollow"><phrase 1="$post[username]">$vbphrase[find_all_posts_by_x]</phrase></a></td></tr>
    </if>
and add this code under it

Code:
<tr><td class="vbmenu_option">
      <a href="search.php?$session[sessionurl]do=finduser&u=$post[userid]&starteronly=1"><phrase 1="$post[username]">$vbphrase[find_all_threads_by_x]</phrase></a></td></tr>
Now go to:
Admin cp >> Phrase manager >> add new phrase:

Product: vBulletin
varname: find_all_threads_by_x
text: Find All Threads by {1}
Arabic translation: عرض جميع المواضيع التي كتبها {1}

Screenshots

File Type: gif 555.GIF (9.6 KB, 0 views)
File Type: gif 666.GIF (9.8 KB, 0 views)

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #22  
Old 05-29-2009, 10:01 PM
shinng's Avatar
shinng shinng is offline
 
Join Date: May 2009
Posts: 60
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

useful, thanks. installed
Reply With Quote
  #23  
Old 05-30-2009, 05:05 AM
fawzi61 fawzi61 is offline
 
Join Date: Mar 2009
Posts: 6
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

شكراً ولكن أين ملف التحميل ؟
Reply With Quote
  #24  
Old 06-14-2009, 01:42 AM
fourat fourat is offline
 
Join Date: Mar 2008
Posts: 174
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

العفو أخوي .. لا يوجد ملف تحميل ولكن فقط تعديلات تعملها ويشتغل عندك بعدها ان شاء الله
اتبع الخطوات
Reply With Quote
  #25  
Old 06-17-2009, 11:29 AM
boooooo boooooo is offline
 
Join Date: Apr 2008
Posts: 6
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nice work, thank you!
Reply With Quote
  #26  
Old 07-16-2009, 11:31 AM
Losha's Avatar
Losha Losha is offline
 
Join Date: Apr 2006
Location: $Losha.Net$
Posts: 55
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nice work, thank you!

Installed
Reply With Quote
  #27  
Old 07-16-2009, 02:04 PM
K4GAP K4GAP is offline
 
Join Date: Mar 2008
Posts: 1,255
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Excellent!!!! thank you.
Reply With Quote
  #28  
Old 07-16-2009, 02:19 PM
BigDog56 BigDog56 is offline
 
Join Date: Jan 2007
Posts: 430
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Works great, thank you!
Reply With Quote
  #29  
Old 08-18-2009, 10:45 PM
yotsume's Avatar
yotsume yotsume is offline
 
Join Date: Dec 2006
Posts: 844
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

QUESTION:

I need at add this link to a vbadvanced block so it shows on my homepage. How can I get this link to be on the vba homepage in a block?

I do not need the username to be included. But when a member logs in the link will need to pull their ID to filter to their new threads.

So how can I do this?
Reply With Quote
  #30  
Old 10-07-2009, 08:16 PM
Tom Kagan Tom Kagan is offline
 
Join Date: Jan 2008
Posts: 18
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Installed.

I moved the link to be before the </if> for consistency. Additionally, I replaced the use of & in the url with &amp; to allow it to validate XHTML.

Also, the code to insert has a typo. It should read: 'find_all_threads_started_by_x' (like in the title of this thread) and not 'find_all_threads_by_x'

Edit:

For whatever reason, I was not able to make the phrase work. Until such time I can figure out why, I fell back and put this instead:

Code:
<tr><td class="vbmenu_option">
      <a href="search.php?$session[sessionurl]do=finduser&amp;u=$post[userid]&amp;starteronly=1" rel="nofollow">Find all threads started by $post[username]</a></td></tr>
It matches the phrase used in the profile statistics.
Reply With Quote
  #31  
Old 10-25-2009, 12:51 AM
hscorp hscorp is offline
 
Join Date: Dec 2007
Posts: 56
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Tom Kagan View Post
Installed.

I moved the link to be before the </if> for consistency. Additionally, I replaced the use of & in the url with &amp; to allow it to validate XHTML.

Also, the code to insert has a typo. It should read: 'find_all_threads_started_by_x' (like in the title of this thread) and not 'find_all_threads_by_x'

Edit:

For whatever reason, I was not able to make the phrase work. Until such time I can figure out why, I fell back and put this instead:

Code:
<tr><td class="vbmenu_option">
      <a href="search.php?$session[sessionurl]do=finduser&amp;u=$post[userid]&amp;starteronly=1" rel="nofollow">Find all threads started by $post[username]</a></td></tr>
It matches the phrase used in the profile statistics.
me too i couldn't make the phrase work
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 01:26 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05019 seconds
  • Memory Usage 2,332KB
  • Queries Executed 27 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (4)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (2)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete