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

Reply
 
Thread Tools
Add Posting Rules Near Editor Details »»
Add Posting Rules Near Editor
Version: 1.00, by Princeton Princeton is offline
Developer Last Online: Nov 2022 Show Printable Version Email this Page

Version: 3.5.4 Rating:
Released: 04-22-2006 Last Update: Never Installs: 10
 
No support by the author.

Sometimes, it's the little things in life that makes us happy:

Move Posting Rules Near Editor is just a simple mod to display Posting Rules near editor. This mod will add the Posting Rules to all editors including quickreply. Please take a look at the following attachments if you do not understand what I mean.

All you have to do is upload the "product_gtpostrules" XML file via the Plugin System and do the following template edits.

PayPal Donations Accepted

FIND IN SHOWTHREAD:
HTML Code:
$messagearea
REPLACE WITH:
HTML Code:
$messagearea
<div class="smallfont" align="center"><strong>$vbphrase[posting_rules]</strong>:
  <phrase 1="misc.php?$session[sessionurl]do=bbcode" 2="$bbcodeon">$vbphrase[vb_code_is_x]</phrase>, 
  <phrase 1="misc.php?$session[sessionurl]do=showsmilies" 2="$smilieson">$vbphrase[smilies_are_x]</phrase>, 
  <phrase 1="misc.php?$session[sessionurl]do=bbcode#imgcode" 2="$imgcodeon">$vbphrase[img_code_is_x]</phrase>, 
  <phrase 1="$htmlcodeon">$vbphrase[html_code_is_x]</phrase>
</div>
FIND IN editor_toolbar_on:
HTML Code:
        <if condition="$smiliebox"><td class="controlbar">$smiliebox</td></if>
    </tr>
REPLACE WITH:
HTML Code:
        <if condition="$smiliebox"><td class="controlbar">$smiliebox</td></if>
    </tr>
    <tr>
        <td class="controlbar" align="center"><div class="smallfont"><strong>$vbphrase[posting_rules]</strong>:
        <phrase 1="misc.php?$session[sessionurl]do=bbcode" 2="$bbcodeon">$vbphrase[vb_code_is_x]</phrase>, 
        <phrase 1="misc.php?$session[sessionurl]do=showsmilies" 2="$smilieson">$vbphrase[smilies_are_x]</phrase>, 
        <phrase 1="misc.php?$session[sessionurl]do=bbcode#imgcode" 2="$imgcodeon">$vbphrase[img_code_is_x]</phrase>, 
        <phrase 1="$htmlcodeon">$vbphrase[html_code_is_x]</phrase>
        </div></td>
    </tr>
FIND IN editor_toolbar_off:
HTML Code:
$newpost[message]</textarea>
REPLACE WITH:
HTML Code:
$newpost[message]</textarea>
    <div class="smallfont"><strong>$vbphrase[posting_rules]</strong>:
          <phrase 1="misc.php?$session[sessionurl]do=bbcode" 2="$bbcodeon">$vbphrase[vb_code_is_x]</phrase>, 
          <phrase 1="misc.php?$session[sessionurl]do=showsmilies" 2="$smilieson">$vbphrase[smilies_are_x]</phrase>, 
          <phrase 1="misc.php?$session[sessionurl]do=bbcode#imgcode" 2="$imgcodeon">$vbphrase[img_code_is_x]</phrase>, 
          <phrase 1="$htmlcodeon">$vbphrase[html_code_is_x]</phrase>
        </div>

FIND IN postbit_quickedit:
HTML Code:
$newpost[message]</textarea>
    </div>
REPLACE WITH:
HTML Code:
$newpost[message]</textarea>
    </div>
    <div class="smallfont" align="center"><strong>$vbphrase[posting_rules]</strong>:
        <phrase 1="misc.php?$session[sessionurl]do=bbcode" 2="$bbcodeon">$vbphrase[vb_code_is_x]</phrase>, 
        <phrase 1="misc.php?$session[sessionurl]do=showsmilies" 2="$smilieson">$vbphrase[smilies_are_x]</phrase>, 
        <phrase 1="misc.php?$session[sessionurl]do=bbcode#imgcode" 2="$imgcodeon">$vbphrase[img_code_is_x]</phrase>, 
        <phrase 1="$htmlcodeon">$vbphrase[html_code_is_x]</phrase>
    </div>
Let me know if I'm missing anything ... thanks.00

Show Your Support

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

Comments
  #2  
Old 04-22-2006, 11:13 PM
Atakan KOC's Avatar
Atakan KOC Atakan KOC is offline
 
Join Date: Feb 2006
Location: Istanbul
Posts: 710
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

install Thanks
Reply With Quote
  #3  
Old 04-22-2006, 11:35 PM
trackpads's Avatar
trackpads trackpads is offline
 
Join Date: Aug 2003
Location: Armyville
Posts: 1,074
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Great idea!
Reply With Quote
  #4  
Old 04-22-2006, 11:48 PM
trackpads's Avatar
trackpads trackpads is offline
 
Join Date: Aug 2003
Location: Armyville
Posts: 1,074
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Found one problem, in the editor on template:

Code:
<if condition="$smiliebox"><td class="controlbar">$smiliebox</td></if>
    </tr>
should be:

Code:
    <if condition="$smiliebox">
    <tr>
        <td class="controlbar">$smiliebox</td></td>
    </tr>
Took me a minute to figure out that the <tr> was missing!

Thanks again, great idea and installed!!

-Jason
Reply With Quote
  #5  
Old 04-23-2006, 12:01 AM
Princeton's Avatar
Princeton Princeton is offline
 
Join Date: Nov 2001
Location: Vineland, NJ
Posts: 6,693
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm guessing you have the smiliebox below editing area and not side of editor as in a default vbulletin style.

You may want to download the files again as I added the ability to add the rules to the postbit_quickedit template. Yes, reupload the xml file and do the last template edit as outlined in the first post.
Reply With Quote
  #6  
Old 04-23-2006, 12:13 AM
Barakat's Avatar
Barakat Barakat is offline
 
Join Date: Nov 2004
Location: Jerusalem
Posts: 571
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks installed and working nice .
Reply With Quote
  #7  
Old 04-23-2006, 01:37 AM
trackpads's Avatar
trackpads trackpads is offline
 
Join Date: Aug 2003
Location: Armyville
Posts: 1,074
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Princeton
I'm guessing you have the smiliebox below editing area and not side of editor as in a default vbulletin style.

You may want to download the files again as I added the ability to add the rules to the postbit_quickedit template. Yes, reupload the xml file and do the last template edit as outlined in the first post.
I knew it was my fault! Sorry about that!

Great hack!

-Jason
Reply With Quote
  #8  
Old 04-23-2006, 01:40 AM
trackpads's Avatar
trackpads trackpads is offline
 
Join Date: Aug 2003
Location: Armyville
Posts: 1,074
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Also, while I am using the heck out of all your hacks How do you widen the wysiwyg to match the post icon box? That extra inch is driving me mad! Check out the screenshot.

Thanks again!
Reply With Quote
  #9  
Old 04-23-2006, 03:22 AM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How did you guys get the smilies to show at the bottom like that instead of the side (as in the 2nd pic in the first post)?
Reply With Quote
  #10  
Old 04-23-2006, 07:36 AM
bashy bashy is offline
 
Join Date: Nov 2005
Posts: 2,544
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi boofo

its the author of this hack, hack, ooo sounded better when i was thinking it pmsl... forget it just click the link lol https://vborg.vbsupport.ru/showthread.php?t=106747
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 09:11 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.04928 seconds
  • Memory Usage 2,315KB
  • Queries Executed 23 (?)
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
  • (2)bbcode_code
  • (8)bbcode_html
  • (1)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
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (9)postbit
  • (10)postbit_onlinestatus
  • (10)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_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete