Guides & Snippets for phpBB3.
Try the Snippets here and share Your own Snippets
Post
by cisco007 » 23 Jun 2010, 13:10
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:
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
Post
by Inner Circle » 23 Jun 2010, 13:42
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:
Add before:
Code: Select all
<p class="quick">
<input class="button2" name="add" type="submit" value="{L_ADD_RANK}" />
{S_FORM_TOKEN}
</p>
Post
by cisco007 » 23 Jun 2010, 14:38
yeah, just about any ACP page that has a button on the bottom, you can add it to the top also!
Post
by Stoker » 23 Jun 2010, 18:58
I did this a long time ago and forgot all about it.
Its a nice feature.
Post
by Chalong » 24 Jun 2010, 11:42
Yes it's a good one.
Very useful. Thank you.