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

Reply
 
Thread Tools
Quick Reply - to modify the appearance of the waiting text Details »»
Quick Reply - to modify the appearance of the waiting text
Version: 1.00, by Allan Allan is offline
Developer Last Online: Mar 2017 Show Printable Version Email this Page

Version: 3.5.4 Rating:
Released: 03-17-2006 Last Update: Never Installs: 51
 
No support by the author.

What this does:
It's a little mod for custom vBulletin, more mainly, text which appears when to reply in quick reply (Quick Reply System).


In your ACP, check "Languages & Phrases" => "Search in Phrases" (../forum/admincp/phrase.php?do=search), choose "Phrase Text and Phrase Variable Name":

Check this variable: "posting_quick_reply_please_wait"

Replace text:
  • "Posting Quick Reply - Please Wait"

By:
  • "<center><img src="http://www.your-site.com/forum/images/misc/loading.gif" alt="" /></center>" (before, upload Attach Files "loading.gif" in your file: "../forum/images/misc")

Before:





After:


(Of course, animated image ^^)

:banana: , it's little mod

~~~~~~~~~~~~~~~~~~~~~~~~~
If your install this hack, Click Install Please

Show Your Support

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

Comments
  #32  
Old 03-21-2006, 11:09 PM
Tralala's Avatar
Tralala Tralala is offline
 
Join Date: Jan 2006
Posts: 1,207
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hey, and here's a way to add the same "progress graphic" to the Quick Edit, Advanced, and Delete Buttons...

https://vborg.vbsupport.ru/showthread.php?p=931415

I incorporated Allan's tip (giving credit where credit is due of course) here.

Works great!
Reply With Quote
  #33  
Old 03-22-2006, 04:55 AM
Tralala's Avatar
Tralala Tralala is offline
 
Join Date: Jan 2006
Posts: 1,207
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Allan, in that other thread, Brad came up with a way to have different "loading" graphics for each style:
https://vborg.vbsupport.ru/showpost....9&postcount=13

That would help as my skins are all so different.

Any way to enhance your hack to allow for the same?
Reply With Quote
  #34  
Old 03-22-2006, 06:11 AM
Tralala's Avatar
Tralala Tralala is offline
 
Join Date: Jan 2006
Posts: 1,207
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Oh, and for April Fool's I'm thinking of changing my "loading" graphic to this:

http://members.dslextreme.com/users/...-recursion.gif

Reply With Quote
  #35  
Old 03-22-2006, 07:07 AM
Allan's Avatar
Allan Allan is offline
 
Join Date: Jun 2003
Location: France
Posts: 1,513
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Tralala
Allan, in that other thread, Brad came up with a way to have different "loading" graphics for each style:
https://vborg.vbsupport.ru/showpost....9&postcount=13

That would help as my skins are all so different.

Any way to enhance your hack to allow for the same?
Yes, no problem, just modify phrases to template of Brad:

- $vbphrase[post_wait_loo]
- $vbphrase[delete_wait_loo]
- $vbphrase[bigreply_wait_loo]

Change it with my modifications and work
Reply With Quote
  #36  
Old 03-22-2006, 07:56 AM
Tralala's Avatar
Tralala Tralala is offline
 
Join Date: Jan 2006
Posts: 1,207
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Allan
Yes, no problem, just modify phrases to template of Brad:

- $vbphrase[post_wait_loo]
- $vbphrase[delete_wait_loo]
- $vbphrase[bigreply_wait_loo]

Change it with my modifications and work
Huh? I'm confused by this response. Modify Brad's phrases? His are working fine and use different graphics for each skin.


Now I'd like to be able to use different graphics for the Quick Reply on each skin.

Wouldn't I modify the "posting_quick_reply_please_wait" phrase?
Reply With Quote
  #37  
Old 03-22-2006, 08:18 AM
Allan's Avatar
Allan Allan is offline
 
Join Date: Jun 2003
Location: France
Posts: 1,513
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

No, you have to modify the phrases to Brad hack (in her hack)

this phrases:

- post_wait_loo
- delete_wait_loo
- bigreply_wait_loo
Reply With Quote
  #38  
Old 03-22-2006, 08:20 AM
Brad Brad is offline
 
Join Date: Nov 2001
Posts: 4,765
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Tralala
Huh? I'm confused by this response. Modify Brad's phrases? His are working fine and use different graphics for each skin.


Now I'd like to be able to use different graphics for the Quick Reply on each skin.

Wouldn't I modify the "posting_quick_reply_please_wait" phrase?

Open the SHOWTHREAD template, find:

HTML Code:
		<div align="center" id="qr_posting_msg" style="display:none; margin-top:6px">
			<strong>$vbphrase[posting_quick_reply_please_wait]</strong>
		</div>
Replace with:

HTML Code:
		<div align="center" id="qr_posting_msg" style="display:none; margin-top:6px">
		<img src="$stylevar[imgdir_misc]/loading.gif" alt="$vbphrase[posting_quick_reply_please_wait]" border="0" />
		</div>
Now edit the phrase 'posting_quick_reply_please_wait' so it reads:

Quote:
Posting Quick Reply - Please Wait
Quote:
Originally Posted by Allan
No, you have to modify the phrases to Brad hack (in her hack)
I'm a guy

Also there is no need to futher modify my modification, as the instructions I posted do not even use the phrases to get the image. Instead mine uses a hidden div that is shown when buttons are clicked in the quick edit. What I posted above is basically the same but it piggy backs off the one already there to unhide the text.
Reply With Quote
  #39  
Old 03-22-2006, 08:47 AM
Allan's Avatar
Allan Allan is offline
 
Join Date: Jun 2003
Location: France
Posts: 1,513
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Humm ok, i not understand the comment to Tralala ^^
Reply With Quote
  #40  
Old 03-22-2006, 03:50 PM
Tralala's Avatar
Tralala Tralala is offline
 
Join Date: Jan 2006
Posts: 1,207
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Brad
Open the SHOWTHREAD template, find:

HTML Code:
		<div align="center" id="qr_posting_msg" style="display:none; margin-top:6px">
			<strong>$vbphrase[posting_quick_reply_please_wait]</strong>
		</div>
Replace with:

HTML Code:
		<div align="center" id="qr_posting_msg" style="display:none; margin-top:6px">
		<img src="$stylevar[imgdir_misc]/loading.gif" alt="$vbphrase[posting_quick_reply_please_wait]" border="0" />
		</div>

Thanks Brad, works a treat.

I still wanted the text underneath the graphic, so I actually replaced it with this:

HTML Code:
<div align="center" id="qr_posting_msg" style="display:none; margin-top:6px">
<img src="$stylevar[imgdir_misc]/loading.gif" alt="$vbphrase[posting_quick_reply_please_wait]" border="0" />
<br /><strong>$vbphrase[posting_quick_reply_please_wait]</strong>
</div>
Reply With Quote
  #41  
Old 04-07-2006, 06:50 PM
thc thc is offline
 
Join Date: Apr 2004
Location: marseille france
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

merci allan
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 11:46 AM.


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.06884 seconds
  • Memory Usage 2,324KB
  • 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
  • (5)bbcode_html
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)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
  • (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_postinfo_query
  • fetch_postinfo
  • 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_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete