[Release] we_universal 2.3.0 for phpBB 3.0.12

For style authors to post and receive feedback on 3.0.x styles still in development. Any development styles you wish to use on your live board should be installed with caution!
Ideas Centre
Ozo
Registered User
Posts: 330
Joined: Mon Dec 13, 2010 7:57 pm

Re: [DEV] we_universal 2.3.0 for phpBB 3.0.12

Post by Ozo »

Profiles are looking fine for me. vista FF here.

Are you seeing the same on the demo site?
MrC
Registered User
Posts: 857
Joined: Mon Jun 30, 2003 4:11 pm
Location: The Netherlands
Name: Ivo

Re: [DEV] we_universal 2.3.0 for phpBB 3.0.12

Post by MrC »

I've found out what is wrong.
I forgot i had installed a mod that also changes the UCP.
I will remove it tomorrow, then it will be fine

Sorry for the inconvenience
SwT-CarbonzZ
Registered User
Posts: 575
Joined: Tue Oct 12, 2010 7:17 am

Re: [DEV] we_universal 2.3.0 for phpBB 3.0.12

Post by SwT-CarbonzZ »

I having problems to make the board3 portal edits , ive tryed something but that did not worked :(

Code: Select all

Open: styles/prosilver/template/overall_header.html

Find

Tip: This may be a partial find and not the whole line.


Code:Select All

<div class="navbar">

Add before

Tip: Add these lines on a new blank line before the preceding line(s) to find.


Code:Select all

<!-- IF not $S_IN_PORTAL or S_DISPLAY_PHPBB_MENU -->

Find

Tip: This may be a partial find and not the whole line.


Code:Select All

<li class="icon-home"><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a> <!-- BEGIN navlinks --> <strong>&#8249;</strong>


In-line Find

Tip: This is a partial match of a line for in-line operations.


Code:Select all

<li class="icon-home">

In-line Add after

Code:Select All

<!-- IF U_PORTAL --><a href="{U_PORTAL}">{L_PORTAL}</a> &#187; <!-- ENDIF -->

Find

Tip: This may be a partial find and not the whole line.


Code:Select All

					<li class="icon-logout"><a href="{U_LOGIN_LOGOUT}" title="{L_LOGIN_LOGOUT}" accesskey="x">{L_LOGIN_LOGOUT}</a></li>
				<!-- ENDIF -->
			</ul>

			<span class="corners-bottom"><span></span></span></div>
		</div>

Add after

Tip: Add these lines on a new blank line after the preceding line(s) to find.


Code:Select all

<!-- ENDIF -->

Code: Select all

Open: styles/prosilver/template/overall_footer.html

Find

Tip: This may be a partial find and not the whole line.

Code:Select All

<li class="icon-home"><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a></li>

In-line Find

Tip: This is a partial match of a line for in-line operations.

Code:Select all

<li class="icon-home">

In-line Add after

Code:Select All

<!-- IF U_PORTAL --><a href="{U_PORTAL}">{L_PORTAL}</a> &#187; <!-- ENDIF -->
weeb
Registered User
Posts: 392
Joined: Fri Apr 09, 2010 7:54 pm

Re: [DEV] we_universal 2.3.0 for phpBB 3.0.12

Post by weeb »

You can apply changes to this piece of code from overall_header.html):

Code: Select all

<nav class="inventia-forum-menu">
			<ul class="inventia-menu">
				<li class="inventia-menu-item"><a href="{U_FAQ}" title="{L_FAQ_EXPLAIN}">{L_FAQ}</a></li>
				<!-- IF S_DISPLAY_SEARCH --><li class="inventia-menu-item"><a href="{U_SEARCH}" title="{L_SEARCH_ADV_EXPLAIN}">{L_SEARCH}</a></li><!-- ENDIF -->
				<!-- IF U_TEAM --><li class="inventia-menu-item"><a href="{U_TEAM}" title="{L_THE_TEAM}">{L_THE_TEAM}</a></li><!-- ENDIF -->
				
				<!-- IF not S_IS_BOT -->
					<!-- IF S_DISPLAY_MEMBERLIST --><li class="inventia-menu-item"><a href="{U_MEMBERLIST}" title="{L_MEMBERLIST_EXPLAIN}">{L_MEMBERLIST}</a></li><!-- ENDIF -->
					<!-- IF not S_USER_LOGGED_IN and S_REGISTER_ENABLED and not (S_SHOW_COPPA or S_REGISTRATION) --><li class="inventia-menu-item"><a href="{U_REGISTER}" title="{L_REGISTER}">{L_REGISTER}</a></li><!-- ENDIF -->
					<li class="inventia-menu-item"><a href="{U_LOGIN_LOGOUT}" title="{L_LOGIN_LOGOUT}" accesskey="x">{L_LOGIN_LOGOUT}</a></li>
				<!-- ENDIF -->
			</ul>
		</nav>
		
		<!-- IF not S_IS_BOT and S_USER_LOGGED_IN -->
			<nav class="inventia-user-menu">
				<ul class="inventia-menu">
					<li class="inventia-menu-item"><a href="{U_PROFILE}" title="{L_PROFILE}" accesskey="e">{L_PROFILE}</a></li>
					<!-- IF S_DISPLAY_PM --><li class="inventia-menu-item"><a href="{U_PRIVATEMSGS}" title="{L_PRIVATE_MESSAGES}">{PRIVATE_MESSAGE_INFO}</a></li><!-- ENDIF -->
					<!-- IF S_DISPLAY_SEARCH --><li class="inventia-menu-item"><a href="{U_SEARCH_SELF}" title="{L_SEARCH_SELF}">{L_SEARCH_SELF}</a></li><!-- ENDIF -->
					<!-- IF U_RESTORE_PERMISSIONS --><li class="inventia-menu-item"><a href="{U_RESTORE_PERMISSIONS}" title="{L_RESTORE_PERMISSIONS}">{L_RESTORE_PERMISSIONS}</a></li><!-- ENDIF -->
					<!-- IF U_MCP --><li class="inventia-menu-item"><a href="{U_MCP}" title="{L_MCP}">{L_MCP}</a></li><!-- ENDIF -->
					<!-- IF U_ACP --><li class="inventia-menu-item"><a href="{U_ACP}" title="{L_ACP}">{L_ACP}</a></li><!-- ENDIF -->
				</ul>
			</nav>
		<!-- ENDIF -->
Add links to menu like this:

Code: Select all

<!-- IF U_PORTAL --><li class="inventia-menu-item"><a href="{U_PORTAL}" title="{L_PORTAL}">{L_PORTAL}</a></li><!-- ENDIF -->
phpBB styles: we_universalwe_clearblue
Styles news and updates: FacebookGoogle+Twitter
weeb
Registered User
Posts: 392
Joined: Fri Apr 09, 2010 7:54 pm

Re: [DEV] we_universal 2.3.0 for phpBB 3.0.12

Post by weeb »

Today will be finally first Release Candidate. Next bigger changes are planned for 2.4.x. If there will be no more bugs I will submit it to styles database and write documentation within next few days.
phpBB styles: we_universalwe_clearblue
Styles news and updates: FacebookGoogle+Twitter
SwT-CarbonzZ
Registered User
Posts: 575
Joined: Tue Oct 12, 2010 7:17 am

Re: [DEV] we_universal 2.3.0 for phpBB 3.0.12

Post by SwT-CarbonzZ »

Well nice to hear that , just hoping i don't have to change alot on my version.
weeb
Registered User
Posts: 392
Joined: Fri Apr 09, 2010 7:54 pm

Re: [DEV] we_universal 2.3.0 for phpBB 3.0.12

Post by weeb »

So here it is:
https://github.com/inventea/we_universa ... v2.3.0-RC1

Quite a lot of commits but since it is in repository it would be easy to compare with your current version.
Last edited by weeb on Sat May 31, 2014 1:23 pm, edited 1 time in total.
phpBB styles: we_universalwe_clearblue
Styles news and updates: FacebookGoogle+Twitter
SwT-CarbonzZ
Registered User
Posts: 575
Joined: Tue Oct 12, 2010 7:17 am

Re: [RC1] we_universal 2.3.0 for phpBB 3.0.12

Post by SwT-CarbonzZ »

Hmm ok i will check this weekend.
weeb
Registered User
Posts: 392
Joined: Fri Apr 09, 2010 7:54 pm

Re: [RC1] we_universal 2.3.0 for phpBB 3.0.12

Post by weeb »

Please test latest commit instead of RC1. I fixed some bugs I've found. For now I think everything is done.
phpBB styles: we_universalwe_clearblue
Styles news and updates: FacebookGoogle+Twitter
weeb
Registered User
Posts: 392
Joined: Fri Apr 09, 2010 7:54 pm

Re: [RC1] we_universal 2.3.0 for phpBB 3.0.12

Post by weeb »

Today I will submit the style for validation in Styles database I've also started creating FAQ and documentation for we_universal. Do you have any questions I should cover in FAQ?
Last edited by weeb on Sat May 31, 2014 1:23 pm, edited 1 time in total.
phpBB styles: we_universalwe_clearblue
Styles news and updates: FacebookGoogle+Twitter
SwT-CarbonzZ
Registered User
Posts: 575
Joined: Tue Oct 12, 2010 7:17 am

Re: [RC1] we_universal 2.3.0 for phpBB 3.0.12

Post by SwT-CarbonzZ »

Still need to have time to update my style , will be tomorrow.

Maybe in the FAQ , to add the rotation header.
weeb
Registered User
Posts: 392
Joined: Fri Apr 09, 2010 7:54 pm

Re: [RC1] we_universal 2.3.0 for phpBB 3.0.12

Post by weeb »

Ok, I will wait a couple of days with submitting and describe rotation header tomorrow.
phpBB styles: we_universalwe_clearblue
Styles news and updates: FacebookGoogle+Twitter
gwax23
Registered User
Posts: 26
Joined: Sat Apr 19, 2014 4:57 am

Re: [RC1] we_universal 2.3.0 for phpBB 3.0.12

Post by gwax23 »

Looks awesome. Will this new version be more mod friendly and compatible?
weeb
Registered User
Posts: 392
Joined: Fri Apr 09, 2010 7:54 pm

Re: [RC1] we_universal 2.3.0 for phpBB 3.0.12

Post by weeb »

Definitely. Most of changes are done using CSS. The code is grouped in separate file. I think compatibility will be improved in new versions if necessary.
phpBB styles: we_universalwe_clearblue
Styles news and updates: FacebookGoogle+Twitter
gwax23
Registered User
Posts: 26
Joined: Sat Apr 19, 2014 4:57 am

Re: [RC1] we_universal 2.3.0 for phpBB 3.0.12

Post by gwax23 »

weeb wrote:Definitely. Most of changes are done using CSS. The code is grouped in separate file. I think compatibility will be improved in new versions if necessary.
Good to hear. I will definitely be using this style till we clearblue is out.

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