Button at top of bbcode page

Guides & Snippets for phpBB3.
Try the Snippets here and share Your own Snippets

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

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>

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!

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.

Re: Button at top of bbcode page

Post by Chalong »

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