[Release] Aero (phpBB 3.1.10)

For style authors to post and receive feedback on 3.1.x styles still in development. Any development styles you wish to use on your live board should be installed with caution!
Suggested Hosts
Space Pipeline
Registered User
Posts: 16
Joined: Mon Nov 17, 2014 4:16 pm

Re: [Release] Aero (phpBB 3.1.9)

Post by Space Pipeline »

posting layout

Code: Select all

<div class="panel" id="postingbox">
	<div class="inner">
	
	<h3>{L_POST_A}</h3>

	<!-- DEFINE $EXTRA_POSTING_OPTIONS = 1 -->
	<!-- INCLUDE posting_editor.html -->
	<input type="hidden" name="show_panel" value="options-panel" />
	{S_FORM_TOKEN}
	</div>
</div>
to

Code: Select all

<div class="panel" id="postingbox">
	<div class="inner">
	
	<h3>{L_POST_A}</h3>

	<!-- DEFINE $EXTRA_POSTING_OPTIONS = 1 -->
	<!-- INCLUDE posting_editor.html -->
	<input type="hidden" name="show_panel" value="options-panel" />
	<!-- IF S_USER_LOGGED_IN -->
		{S_FORM_TOKEN}
	<!-- ELSE -->
		<input type="hidden" name="creation_time" value="0" />
		<input type="hidden" name="form_token" value="0" />
		<script>
		function addListener(obj, type, listener) {
			if (obj.addEventListener) {
				obj.addEventListener(type, listener, false);
				return true;
			} else if(obj.attachEvent) {
				obj.attachEvent('on' + type, listener);
				return true;
			}
			return false;
		}

		addListener(document.getElementById("postform"), 'submit', function() {
			$('i'+'nput[nam'+'e=cre'+'ation_ti'+'me]').val('{RAW_CREATION_TIME}');
			$('in'+'pu'+'t[nam'+'e=form'+'_to'+'ken]').val('{RAW_FORM_TOKEN}');
		});

		<!-- IF S_DISPLAY_USERNAME -->
		addListener(window, 'load', function() {
			if (!('localStorage' in window && window['localStorage'] !== null) || $('#username').val()) return;
			$('#username').val(localStorage.getItem('anonymous_username')).on('change', function()
			{
				localStorage.setItem('anonymous_username', $(this).val());
			});
		});
		<!-- ENDIF -->
		</script>
	<!-- ENDIF -->
	</div>
</div>
quickreply

Code: Select all

					{S_FORM_TOKEN}
					{QR_HIDDEN_FIELDS}
					<input type="submit" accesskey="f" tabindex="6" name="preview" value="{L_FULL_EDITOR}" class="button2" id="qr_full_editor" />&nbsp;
					<input type="submit" accesskey="s" tabindex="7" name="post" value="{L_SUBMIT}" class="button1" />&nbsp;
				</fieldset>
		</div>
	</div>
to

Code: Select all

				<!-- IF S_USER_LOGGED_IN -->
					{S_FORM_TOKEN}
				<!-- ELSE -->
					<input type="hidden" name="creation_time" value="0" />
					<input type="hidden" name="form_token" value="0" />
					<script>
					function addListener(obj, type, listener) {
						if (obj.addEventListener) {
							obj.addEventListener(type, listener, false);
							return true;
						} else if(obj.attachEvent) {
							obj.attachEvent('on' + type, listener);
							return true;
						}
						return false;
					}

					addListener(document.getElementById("postform"), 'submit', function() {
						$('i'+'nput[nam'+'e=cre'+'ation_ti'+'me]').val('{RAW_CREATION_TIME}');
						$('in'+'pu'+'t[nam'+'e=form'+'_to'+'ken]').val('{RAW_FORM_TOKEN}');
					});
					<!-- IF S_DISPLAY_USERNAME -->
					addListener(window, 'load', function() {
						if (!('localStorage' in window && window['localStorage'] !== null) || $('#username').val()) return;
						$('#username').val(localStorage.getItem('anonymous_username')).on('change', function()
						{
							localStorage.setItem('anonymous_username', $(this).val());
						});
					});
					<!-- ENDIF -->
					</script>
				<!-- ENDIF -->
					{QR_HIDDEN_FIELDS}
					<input type="submit" accesskey="f" tabindex="6" name="preview" value="{L_FULL_EDITOR}" class="button2" id="qr_full_editor" />&nbsp;
					<input type="submit" accesskey="s" tabindex="7" name="post" value="{L_SUBMIT}" class="button1" />&nbsp;
				</fieldset>
		</div>
	</div>
ucp register

Code: Select all

		{S_HIDDEN_FIELDS}
		<input type="reset" value="{L_RESET}" name="reset" class="button2" />&nbsp;
		<input type="submit" tabindex="9" name="submit" id="submit" value="{L_SUBMIT}" class="button1 default-submit-action" />
		{S_FORM_TOKEN}
	</fieldset>
to

Code: Select all

		{S_HIDDEN_FIELDS}
		<input type="reset" value="{L_RESET}" name="reset" class="button2" />&nbsp;
		<input type="submit" tabindex="9" name="submit" id="submit" value="{L_SUBMIT}" class="button1 default-submit-action" />
		<input type="hidden" name="creation_time" value="0" />
		<input type="hidden" name="form_token" value="0" />
	</fieldset>
in end

Code: Select all

<script>
function addListener(obj, type, listener) {
	if (obj.addEventListener) {
		obj.addEventListener(type, listener, false);
		return true;
	} else if(obj.attachEvent) {
		obj.attachEvent('on' + type, listener);
		return true;
	}
	return false;
}

addListener(document.getElementById("register"), 'submit', function() {
	$('i'+'nput[nam'+'e=cre'+'ation_ti'+'me]').val('{RAW_CREATION_TIME}');
	$('in'+'pu'+'t[nam'+'e=form'+'_to'+'ken]').val('{RAW_FORM_TOKEN}');
});
</script>

<!-- INCLUDE overall_footer.html -->
BaileySonara
Registered User
Posts: 1
Joined: Thu Jun 02, 2016 2:41 pm

Re: [Release] Aero (phpBB 3.1.9)

Post by BaileySonara »

OKay. Perhaps its just because I'm new to this, or maybe I'm doing something wrong. I don't know but for the love of god someone please help me before I burn my webhosting service's servers to the ground.

I've been trying to get my forum to accept a header image update for like a week. I've gone into the stylesheets, I've swapped out all the images in the image folder for both the aero parent style AND the aero purple I'm using. NOTHING WILL WORK. Please tell me what I'm doing wrong
User avatar
Spaldo
Registered User
Posts: 53
Joined: Sun Nov 07, 2004 9:28 pm

Re: [Release] Aero (phpBB 3.1.9)

Post by Spaldo »

I have just updated to the latest version (Aero 2.0.10)

I was wondering if anyone knows how I can put "New posts" in the top menu bar next to
Quick links
FAQ
ACP
MCP

Rather than having to click into quick links?

Thanks
Image
User avatar
2600
I've Been Banned!
Posts: 2567
Joined: Fri Nov 14, 2014 5:14 pm
Location: Area-51

Re: [Release] Aero (phpBB 3.1.9)

Post by 2600 »

Not sure if this will help, but I just use this extension. https://www.phpbb.com/customise/db/exte ... _topics_2/
Morpheus: Unfortunately, no one can be told what The Matrix is. You'll have to see it for yourself.
Hack me.
Consider a canary token.
The nature of my chosen username
:ugeek:
User avatar
Spaldo
Registered User
Posts: 53
Joined: Sun Nov 07, 2004 9:28 pm

Re: [Release] Aero (phpBB 3.1.9)

Post by Spaldo »

John connor wrote:Not sure if this will help, but I just use this extension. https://www.phpbb.com/customise/db/exte ... _topics_2/
Thanks for the post. It is good, but, not quite. I just want the new posts to be it's own link up the top
Image
User avatar
Puchahawa
Registered User
Posts: 769
Joined: Sat Jan 01, 2011 10:33 pm
Name: Randy

Re: [Release] Aero (phpBB 3.1.9)

Post by Puchahawa »

dnstouron wrote:there's a work arround from france on phpbb-fr.com forum

create a Aero style in boardannouncements extention and add this file on it
The Notes extension created by Oxpus displays a reminder similar to Board announcements. I was wondering if anyone could create the css edit like the link above for it so it will fit the aero style better. TIA.
Avatar courtesy of artist Faith Coyotë
User avatar
Ibedejo
Registered User
Posts: 243
Joined: Tue Feb 21, 2012 12:12 am

Re: [Release] Aero (phpBB 3.1.9)

Post by Ibedejo »

Maybe not perfect but ... ;)

- Deactivate the extension
- Purge board cache (just for sure)
- Extract the archive and place the resulting folder aero in the extension's style folder.
- Re-activate the extension

For further styling of the message box on index page open <phpbb_root>/ext/oxpus/notes/styles/aero/theme/notes.css and edit .notes-information {

btw.:
The current version of this extension is 3.0.6 - you might consider updating first ;)
Attachments
aero.zip
(4.79 KiB) Downloaded 335 times
User avatar
Puchahawa
Registered User
Posts: 769
Joined: Sat Jan 01, 2011 10:33 pm
Name: Randy

Re: [Release] Aero (phpBB 3.1.9)

Post by Puchahawa »

Thank you Ibedejo. That will work great. 8-) Appreciate your time.
Avatar courtesy of artist Faith Coyotë
Uz_Michel
Registered User
Posts: 3
Joined: Thu Jan 22, 2015 5:40 pm

Re: [Release] Aero (phpBB 3.1.9)

Post by Uz_Michel »

Updating a style version 3.1.10 will?
User avatar
jrolson
Registered User
Posts: 968
Joined: Wed Jan 05, 2005 1:53 am
Location: U.S.

Re: [Release] Aero (phpBB 3.1.9)

Post by jrolson »

Uz_Michel wrote:Updating a style version 3.1.10 will?
I will try to push an update tomorrow.
User avatar
jrolson
Registered User
Posts: 968
Joined: Wed Jan 05, 2005 1:53 am
Location: U.S.

Re: [Release] Aero (phpBB 3.1.10)

Post by jrolson »

User avatar
RomaamoR
Registered User
Posts: 253
Joined: Tue Feb 24, 2015 4:45 pm
Location: Ukraine
Name: Roman
Contact:

Re: [Release] Aero (phpBB 3.1.10)

Post by RomaamoR »

I am Your style looks perarabotal.
How to upgrade without changing the style? Can I just replace the files?
Diza
Registered User
Posts: 1
Joined: Sun Jan 08, 2017 2:59 pm

Re: [Release] Aero (phpBB 3.1.10)

Post by Diza »

Thank you for your style! ;)
Will the style update to version phpBB 3.2?
User avatar
jrolson
Registered User
Posts: 968
Joined: Wed Jan 05, 2005 1:53 am
Location: U.S.

Re: [Release] Aero (phpBB 3.1.10)

Post by jrolson »

Diza wrote: Sun Jan 08, 2017 3:02 pm Thank you for your style! ;)
Will the style update to version phpBB 3.2?
It would require a complete rewrite as there are so many code changes in 3.2.

At some point it will come, it will take some time though.
silberfuchs
Registered User
Posts: 36
Joined: Mon Oct 27, 2008 6:17 pm

Re: [Release] Aero (phpBB 3.1.10)

Post by silberfuchs »

Thanks for the feedback and the "good news" !
Locked

Return to “[3.1.x] Styles in Development”