Button at top of bbcode page

Guides & Snippets for phpBB3. Try the Snippets here and share Your own Snippets
There is no support here! Only Read Access!
Locked
cisco007
BBCoder VI
BBCoder VI
Posts: 1015
Joined: 16 Mar 2010, 18:14
Location: Don't really know!

Button at top of bbcode page

Post by cisco007 »

Do you ever get tired of having to scroll all the way to the bottom of the page when you want to add an extra bbcode and you have a lot of them? I do. This is a small edit you can do to the ACP bbcodes page to add an extra button to the top!

first open up adm/style/acp_bbcodes.html

Find:

Code: Select all

	<fieldset class="tabulated">
Add before:

Code: Select all

		<p class="quick">
		<input class="button2" name="submit" type="submit" value="{L_ADD_BBCODE}" />
	</p>	
save, upload and refresh and now the bbcodes page will look like this!
BBCodes_1277298374161.png
User avatar
Inner Circle
BBCoder III
BBCoder III
Posts: 107
Joined: 20 Mar 2010, 20:25
Location: Germany
Contact:

Re: Button at top of bbcode page

Post by Inner Circle »

This also works when you have a bunch of Ranks with images and you don´t want to scroll down to the bottom every time to add a new Rank ;)

go to adm/style/acp_ranks.html

Find:

Code: Select all

<fieldset class="tabulated">
Add before:

Code: Select all

<p class="quick">
<input class="button2" name="add" type="submit" value="{L_ADD_RANK}" />
{S_FORM_TOKEN}
</p>
cisco007
BBCoder VI
BBCoder VI
Posts: 1015
Joined: 16 Mar 2010, 18:14
Location: Don't really know!

Re: Button at top of bbcode page

Post by cisco007 »

yeah, just about any ACP page that has a button on the bottom, you can add it to the top also!
User avatar
Stoker
Site Admin
Site Admin
Posts: 3525
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Re: Button at top of bbcode page

Post by Stoker »

I did this a long time ago and forgot all about it.
Its a nice feature.
Board rules! No PM support
User avatar
Chalong
BBCoder II
BBCoder II
Posts: 59
Joined: 06 Mar 2010, 14:03
Location: Pforzheim / Germany
Contact:

Re: Button at top of bbcode page

Post by Chalong »

Yes it's a good one.
Very useful. Thank you. :thumbsup:
Regards Chalong

www.chalong.de
Locked