puertoblack2003 |
03-22-2006 06:48 PM |
Quote:
Originally Posted by Brad
All these additions and other ways of doing them are good, but a little messy. Here is how I would do it. :)
After installing the modification open vbulletin_quick_edit.js
Find:
Code:
// Show going advanced message
fetch_object('qe_advanced_' + vB_QuickEditor.postid).style.display = '';
document.body.style.cursor = 'wait';
Replace with:
Code:
// Show going advanced message
fetch_object('qe_advanced_' + vB_QuickEditor.postid).style.display = '';
fetch_object('qe_image_' + vB_QuickEditor.postid).style.display = '';
document.body.style.cursor = 'wait';
Find:
Code:
// Show saving post message
fetch_object('qe_posting_' + vB_QuickEditor.postid).style.display = '';
document.body.style.cursor = 'wait';
Replace with:
Code:
// Show saving post message
fetch_object('qe_posting_' + vB_QuickEditor.postid).style.display = '';
fetch_object('qe_image_' + vB_QuickEditor.postid).style.display = '';
document.body.style.cursor = 'wait';
Find:
Code:
// Show removing post message
fetch_object('qe_delete_' + vB_QuickEditor.postid).style.display = '';
document.body.style.cursor = 'wait';
Replace with:
Code:
// Show removing post message
fetch_object('qe_delete_' + vB_QuickEditor.postid).style.display = '';
fetch_object('qe_image_' + vB_QuickEditor.postid).style.display = '';
document.body.style.cursor = 'wait';
Find:
Code:
// Hide sending post message and reset cursor
document.body.style.cursor = 'auto';
fetch_object('qe_posting_' + vB_QuickEditor.postid).style.display = 'none';
Replace with:
Code:
// Hide sending post message and reset cursor
document.body.style.cursor = 'auto';
fetch_object('qe_posting_' + vB_QuickEditor.postid).style.display = 'none';
fetch_object('qe_image_' + vB_QuickEditor.postid).style.display = 'none';
Open the postbit, and postbit_legacy templates.
Find:
HTML Code:
<!-- Quick Edit messages -->
<br />
<div id="qe_posting_$post[postid]" style="display:none; margin-top:6px" align="center"><strong>$vbphrase[post_wait_loo]</strong></div>
<div id="qe_delete_$post[postid]" style="display:none; margin-top:6px" align="center"><strong>$vbphrase[delete_wait_loo]</strong></div>
<div id="qe_advanced_$post[postid]" style="display:none; margin-top:6px" align="center"><strong>$vbphrase[bigreply_wait_loo]</strong></div>
<!-- Quick Edit messages -->
Replace with:
HTML Code:
<!-- Quick Edit messages -->
<br />
<div id="qe_posting_$post[postid]" style="display:none; margin-top:6px" align="center"><strong>$vbphrase[post_wait_loo]</strong></div>
<div id="qe_delete_$post[postid]" style="display:none; margin-top:6px" align="center"><strong>$vbphrase[delete_wait_loo]</strong></div>
<div id="qe_advanced_$post[postid]" style="display:none; margin-top:6px" align="center"><strong>$vbphrase[bigreply_wait_loo]</strong></div>
<br />
<div id="qe_image_$post[postid]" style="display:none; margin-top:6px" align="center"><img src="$stylevar[imgdir_misc]/loading.gif" alt="Loading...." border="0" /></div>
<!-- Quick Edit messages -->
Last but not least upload an image named 'loading.gif' to your misc image directory located at: /vbulletin/images/misc. Some styles may have other paths, so you'll need to upload the image for each style! :)
Also ctrl+f5 again to clear the cache.
|
ok brad did everything as instructed with mod installed and this info...somehow still don't work as shown in the pics is there something i have to do in admin cp to activate or modify to get to work?
thank you.
Edited: ok the edit post part (Go Advance) seem to work but the post and rempve seem to be not working
|