we_universal

Will there be an update for phpbb 3.2? - we_universal

Will there be an update for phpbb 3.2?

by libralion » Sat Dec 31, 2016 11:09 am

Hi Weeb,
Will there be an update for phpbb 3.2?

Johanna
User avatar
libralion
Registered User
Posts: 387
Joined: Tue May 13, 2003 9:25 am
Contact:

Re: Will there be an update for phpbb 3.2?

by strelok-by » Mon Jan 02, 2017 9:41 am

I wrote to the author, he still has not answered
User avatar
strelok-by
Registered User
Posts: 126
Joined: Fri Nov 21, 2014 10:22 am
Location: Mozyr / Belarus
Name: Stanislav
Contact:

Re: Will there be an update for phpbb 3.2?

by libralion » Mon Jan 02, 2017 9:47 am

strelok-by wrote:I wrote to the author, he still has not answered
Thanks. Hope he will soon.
I like this style.

Johanna
User avatar
libralion
Registered User
Posts: 387
Joined: Tue May 13, 2003 9:25 am
Contact:

Re: Will there be an update for phpbb 3.2?

by juliokr » Mon Jan 09, 2017 2:17 pm

libralion wrote:
strelok-by wrote:I wrote to the author, he still has not answered
Thanks. Hope he will soon.
I like this style.

Johanna
Mmmh the autors page
https://inventea.com/en
seems to be a bit "dead"

But I found out that you can use we_universial with phpBB 3.2
you just have to change some lines in we_universal / template /viewtopic_body.html

find

Code: Select all

<!-- IF $SHOW_POST_BUTTONS -->
				<ul class="post-buttons">
					<!-- EVENT viewtopic_body_post_buttons_before -->
					<!-- IF postrow.U_EDIT -->
						<li>
							<a href="{postrow.U_EDIT}" title="{L_EDIT_POST}" class="button icon-button edit-icon"><span>{L_BUTTON_EDIT}</span></a>
						</li>
					<!-- ENDIF -->
					<!-- IF postrow.U_DELETE -->
						<li>
							<a href="{postrow.U_DELETE}" title="{L_DELETE_POST}" class="button icon-button delete-icon"><span>{L_DELETE_POST}</span></a>
						</li>
					<!-- ENDIF -->
					<!-- IF postrow.U_REPORT -->
						<li>
							<a href="{postrow.U_REPORT}" title="{L_REPORT_POST}" class="button icon-button report-icon"><span>{L_REPORT_POST}</span></a>
						</li>
					<!-- ENDIF -->
					<!-- IF postrow.U_WARN -->
						<li>
							<a href="{postrow.U_WARN}" title="{L_WARN_USER}" class="button icon-button warn-icon"><span>{L_WARN_USER}</span></a>
						</li>
					<!-- ENDIF -->
and replace with

Code: Select all

<!-- IF $SHOW_POST_BUTTONS -->
				<ul class="post-buttons">
					<!-- EVENT viewtopic_body_post_buttons_before -->
					<!-- IF postrow.U_EDIT -->
						<li>
							<a href="{postrow.U_EDIT}" title="{L_EDIT_POST}" class="button icon-button edit-icon-only"><i class="icon fa-pencil fa-fw" aria-hidden="true"></i><span class="sr-only">{L_BUTTON_EDIT}</span></a>
						</li>
					<!-- ENDIF -->
					<!-- IF postrow.U_DELETE -->
						<li>
							<a href="{postrow.U_DELETE}" title="{L_DELETE_POST}" class="button icon-button delete-icon"><i class="icon fa-times fa-fw" aria-hidden="true"></i><span>{L_DELETE_POST}</span></a>
						</li>
					<!-- ENDIF -->
					<!-- IF postrow.U_REPORT -->
						<li>
							<a href="{postrow.U_REPORT}" title="{L_REPORT_POST}" class="button icon-button report-icon"><i class="icon fa-exclamation fa-fw" aria-hidden="true"></i><span>{L_REPORT_POST}</span></a>
						</li>
					<!-- ENDIF -->
					<!-- IF postrow.U_WARN -->
						<li>
							<a href="{postrow.U_WARN}" title="{L_WARN_USER}" class="button icon-button warn-icon"><i class="icon fa-exclamation-triangle fa-fw" aria-hidden="true"></i><span>{L_WARN_USER}</span></a>
						</li>
					<!-- ENDIF -->
					<!-- IF postrow.U_INFO -->
						<li>
							<a href="{postrow.U_INFO}" title="{L_INFORMATION}" class="button icon-button info-icon"><i class="icon fa-info fa-fw" aria-hidden="true"></i><span>{L_INFORMATION}</span></a>
						</li>
					<!-- ENDIF -->
					<!-- IF postrow.U_QUOTE -->
						<li>
							<a href="{postrow.U_QUOTE}" title="{L_REPLY_WITH_QUOTE}" class="button icon-button quote-icon"><i class="icon fa-quote-left fa-fw" aria-hidden="true"></i><span>{L_QUOTE}</span></a>
						</li>
					<!-- ENDIF -->
juliokr
Registered User
Posts: 133
Joined: Wed Apr 13, 2016 11:21 am
Contact:

Re: Will there be an update for phpbb 3.2?

by libralion » Mon Jan 09, 2017 2:30 pm

juliokr wrote:
But I found out that you can use we_universial with phpBB 3.2
you just have to change some lines in we_universal / template /viewtopic_body.html

find

Code: Select all

<!-- IF $SHOW_POST_BUTTONS -->
				<ul class="post-buttons">
					<!-- EVENT viewtopic_body_post_buttons_before -->
					<!-- IF postrow.U_EDIT -->
						<li>
							<a href="{postrow.U_EDIT}" title="{L_EDIT_POST}" class="button icon-button edit-icon"><span>{L_BUTTON_EDIT}</span></a>
						</li>
					<!-- ENDIF -->
					<!-- IF postrow.U_DELETE -->
						<li>
							<a href="{postrow.U_DELETE}" title="{L_DELETE_POST}" class="button icon-button delete-icon"><span>{L_DELETE_POST}</span></a>
						</li>
					<!-- ENDIF -->
					<!-- IF postrow.U_REPORT -->
						<li>
							<a href="{postrow.U_REPORT}" title="{L_REPORT_POST}" class="button icon-button report-icon"><span>{L_REPORT_POST}</span></a>
						</li>
					<!-- ENDIF -->
					<!-- IF postrow.U_WARN -->
						<li>
							<a href="{postrow.U_WARN}" title="{L_WARN_USER}" class="button icon-button warn-icon"><span>{L_WARN_USER}</span></a>
						</li>
					<!-- ENDIF -->
and replace with

Code: Select all

<!-- IF $SHOW_POST_BUTTONS -->
				<ul class="post-buttons">
					<!-- EVENT viewtopic_body_post_buttons_before -->
					<!-- IF postrow.U_EDIT -->
						<li>
							<a href="{postrow.U_EDIT}" title="{L_EDIT_POST}" class="button icon-button edit-icon-only"><i class="icon fa-pencil fa-fw" aria-hidden="true"></i><span class="sr-only">{L_BUTTON_EDIT}</span></a>
						</li>
					<!-- ENDIF -->
					<!-- IF postrow.U_DELETE -->
						<li>
							<a href="{postrow.U_DELETE}" title="{L_DELETE_POST}" class="button icon-button delete-icon"><i class="icon fa-times fa-fw" aria-hidden="true"></i><span>{L_DELETE_POST}</span></a>
						</li>
					<!-- ENDIF -->
					<!-- IF postrow.U_REPORT -->
						<li>
							<a href="{postrow.U_REPORT}" title="{L_REPORT_POST}" class="button icon-button report-icon"><i class="icon fa-exclamation fa-fw" aria-hidden="true"></i><span>{L_REPORT_POST}</span></a>
						</li>
					<!-- ENDIF -->
					<!-- IF postrow.U_WARN -->
						<li>
							<a href="{postrow.U_WARN}" title="{L_WARN_USER}" class="button icon-button warn-icon"><i class="icon fa-exclamation-triangle fa-fw" aria-hidden="true"></i><span>{L_WARN_USER}</span></a>
						</li>
					<!-- ENDIF -->
					<!-- IF postrow.U_INFO -->
						<li>
							<a href="{postrow.U_INFO}" title="{L_INFORMATION}" class="button icon-button info-icon"><i class="icon fa-info fa-fw" aria-hidden="true"></i><span>{L_INFORMATION}</span></a>
						</li>
					<!-- ENDIF -->
					<!-- IF postrow.U_QUOTE -->
						<li>
							<a href="{postrow.U_QUOTE}" title="{L_REPLY_WITH_QUOTE}" class="button icon-button quote-icon"><i class="icon fa-quote-left fa-fw" aria-hidden="true"></i><span>{L_QUOTE}</span></a>
						</li>
					<!-- ENDIF -->
Juliokr, that is great! Did you test it?
If this works, I certainly will try it when I update to 3.2.
Thanks! :D

Johanna
User avatar
libralion
Registered User
Posts: 387
Joined: Tue May 13, 2003 9:25 am
Contact:

Re: Will there be an update for phpbb 3.2?

by juliokr » Mon Jan 09, 2017 2:39 pm

libralion wrote: Juliokr, that is great! Did you test it?
If this works, I certainly will try it when I update to 3.2.
Thanks!
Yes I already have it on my live-board with 3.2 (I use a modified we_universal style)
https://www.frankreich-trip.com/forum/
juliokr
Registered User
Posts: 133
Joined: Wed Apr 13, 2016 11:21 am
Contact:

Re: Will there be an update for phpbb 3.2?

by libralion » Mon Jan 09, 2017 3:56 pm

juliokr wrote:
libralion wrote: Juliokr, that is great! Did you test it?
If this works, I certainly will try it when I update to 3.2.
Thanks!
Yes I already have it on my live-board with 3.2 (I use a modified we_universal style)
https://www.frankreich-trip.com/forum/
Great! Thanks a lot! :D

Johanna
User avatar
libralion
Registered User
Posts: 387
Joined: Tue May 13, 2003 9:25 am
Contact:

Re: Will there be an update for phpbb 3.2?

by juliokr » Mon Jan 09, 2017 11:33 pm

libralion wrote:
juliokr wrote:
libralion wrote: Juliokr, that is great! Did you test it?
If this works, I certainly will try it when I update to 3.2.
Thanks!
Yes I already have it on my live-board with 3.2 (I use a modified we_universal style)
https://www.frankreich-trip.com/forum/
Great! Thanks a lot! :D

Johanna
You are welcome
But I recognized later you have to make one more change

in we_universal viewforum_body.html
find

Code: Select all

<!-- IF topicrow.S_UNREAD_TOPIC and not S_IS_BOT --><a href="{topicrow.U_NEWEST_POST}">{NEWEST_POST_IMG}</a> <!-- ENDIF --><a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a>
						<!-- IF topicrow.S_TOPIC_UNAPPROVED or topicrow.S_POSTS_UNAPPROVED --><a href="{topicrow.U_MCP_QUEUE}">{topicrow.UNAPPROVED_IMG}</a> <!-- ENDIF -->
						<!-- IF topicrow.S_TOPIC_DELETED --><a href="{topicrow.U_MCP_QUEUE}">{DELETED_IMG}</a> <!-- ENDIF -->
						<!-- IF topicrow.S_TOPIC_REPORTED --><a href="{topicrow.U_MCP_REPORT}">{REPORTED_IMG}</a><!-- ENDIF --><br />
and replace with

Code: Select all

<!-- IF topicrow.S_UNREAD_TOPIC and not S_IS_BOT -->
							<a class="unread" href="{topicrow.U_NEWEST_POST}">
								<i class="icon fa-file fa-fw icon-red icon-md" aria-hidden="true"></i><span class="sr-only">{NEW_POST}</span>
							</a>
						<!-- ENDIF -->
						<a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a>
						<!-- IF topicrow.S_TOPIC_UNAPPROVED or topicrow.S_POSTS_UNAPPROVED -->
							<a href="{topicrow.U_MCP_QUEUE}" title="{L_TOPIC_UNAPPROVED}">
								<i class="icon fa-question fa-fw icon-blue" aria-hidden="true"></i><span class="sr-only">{L_TOPIC_UNAPPROVED}</span>
							</a>
						<!-- ENDIF -->
						<!-- IF topicrow.S_TOPIC_DELETED -->
							<a href="{topicrow.U_MCP_QUEUE}" title="{L_TOPIC_DELETED}">
								<i class="icon fa-recycle fa-fw icon-green" aria-hidden="true"></i><span class="sr-only">{L_TOPIC_DELETED}</span>
							</a>
						<!-- ENDIF -->
						<!-- IF topicrow.S_TOPIC_REPORTED -->
							<a href="{topicrow.U_MCP_REPORT}" title="{L_TOPIC_REPORTED}">
								<i class="icon fa-exclamation fa-fw icon-red" aria-hidden="true"></i><span class="sr-only">{L_TOPIC_REPORTED}</span>
							</a>
						<!-- ENDIF -->
						<br />
						<!-- EVENT topiclist_row_topic_title_after -->
juliokr
Registered User
Posts: 133
Joined: Wed Apr 13, 2016 11:21 am
Contact:

Re: Will there be an update for phpbb 3.2?

by libralion » Tue Jan 10, 2017 6:09 am

Thanks a lot. :D Next week I will try and get my board to run on 3.2. We will see how it goes.

Johanna
User avatar
libralion
Registered User
Posts: 387
Joined: Tue May 13, 2003 9:25 am
Contact:

Re: Will there be an update for phpbb 3.2?

by Jochen10 » Wed Jan 11, 2017 8:08 am

Hello,
I also have problems with the update to 3.2.0. I added screenshots. Can someone help me?
Fehler1.JPG
Fehler2.JPG
Fehler3.JPG
The address of the forum is www.bauhilfe-forum.de

Many thanks for your help!
Jochen10
Registered User
Posts: 3
Joined: Wed Jan 11, 2017 8:02 am
Name: Jochen
Contact:

Re: Will there be an update for phpbb 3.2?

by juliokr » Thu Jan 12, 2017 9:04 pm

Hi wp_universal lovers after I had made litte changes in 2 files I thought wp_universal would work perfectly with 3.2. But after I recognized that there have been plenty of little things that didn't work correctly.
So worked again on it.
There are still some little mistakes but I add it to the post as zip download.
If you use it make shure to make an update before (you never know)
Feel free to improve the style !
NB. there will be no support from my side
I'm not the author of this style !
Attachments
we_universal.zip
(627.58 KiB) Downloaded 215 times
juliokr
Registered User
Posts: 133
Joined: Wed Apr 13, 2016 11:21 am
Contact:

Re: Will there be an update for phpbb 3.2?

by mjuhl2003 » Thu Jan 12, 2017 10:41 pm

I have the same problem - a lot of missing icons - I have no idea how to bring them back ;-(
mjuhl2003
Registered User
Posts: 9
Joined: Wed Jan 11, 2017 2:47 pm
Contact:

Re: Will there be an update for phpbb 3.2?

by xCanadianz » Fri Jan 13, 2017 1:14 am

juliokr wrote:Hi wp_universal lovers after I had made litte changes in 2 files I thought wp_universal would work perfectly with 3.2. But after I recognized that there have been plenty of little things that didn't work correctly.
So worked again on it.
There are still some little mistakes but I add it to the post as zip download.
If you use it make shure to make an update before (you never know)
Feel free to improve the style !
NB. there will be no support from my side
I'm not the author of this style !
Should make a pull request with your changes on the GitHub.
xCanadianz
Registered User
Posts: 60
Joined: Sun Dec 23, 2012 6:34 am
Contact:

Re: Will there be an update for phpbb 3.2?

by peopleinside » Fri Jan 13, 2017 10:31 am

I have the same problem, need wait an update.
FIX here does not work I have issue on icon right top like report button.
User avatar
peopleinside
Registered User
Posts: 192
Joined: Sat Jan 31, 2015 10:37 pm
Name: Marco
Contact:

Re: Will there be an update for phpbb 3.2?

by peopleinside » Fri Jan 13, 2017 10:34 am

Jochen10 wrote:Hello,
I also have problems with the update to 3.2.0. I added screenshots. Can someone help me?
Fehler1.JPG
Fehler2.JPG
Fehler3.JPG
The address of the forum is www.bauhilfe-forum.de

Many thanks for your help!
Have your resolved?
How to fix icons issue?
Thanks.

OK just missed this:
https://www.phpbb.com/customise/db/styl ... 86#p525086
Thanks, solved
User avatar
peopleinside
Registered User
Posts: 192
Joined: Sat Jan 31, 2015 10:37 pm
Name: Marco
Contact: