phpbb 3-3-2 et recent Topics 2.2.14 - we_universal 2.6.4 - we_universal
phpbb 3-3-2 et recent Topics 2.2.14 - we_universal 2.6.4
Good morning all
the style seems to work with phpbb 3.3.2.
However, read and unread icons do not appear in the recent Topics extension.
An idea ?
the style seems to work with phpbb 3.3.2.
However, read and unread icons do not appear in the recent Topics extension.
An idea ?
-
- Registered User
- Posts: 43
- Joined: Thu May 19, 2016 2:43 pm
Re: phpbb 3-3-2 et recent Topics 2.2.14 - we_universal 2.6.4
I plan to do some compatibility checking and make another release of we_universal soon.
Recent Topics is not an extension that I regularly use. Can you confirm that the missing icons are present if you switch to the prosilver style?
Recent Topics is not an extension that I regularly use. Can you confirm that the missing icons are present if you switch to the prosilver style?
-
- Registered User
- Posts: 594
- Joined: Thu Jul 09, 2015 5:03 pm
Re: phpbb 3-3-2 et recent Topics 2.2.14 - we_universal 2.6.4
Hello
yes I confirm the icons are present with prosilver. The icons are also missing when the message is pinned to announcements.
The creator of recent topics to add in the extension a we_clearblue style but the rendering is not good for we_universal
yes I confirm the icons are present with prosilver. The icons are also missing when the message is pinned to announcements.
The creator of recent topics to add in the extension a we_clearblue style but the rendering is not good for we_universal
-
- Registered User
- Posts: 43
- Joined: Thu May 19, 2016 2:43 pm
Re: phpbb 3-3-2 et recent Topics 2.2.14 - we_universal 2.6.4
Hello,
for info still the same problem with version 2.65
Cordially
for info still the same problem with version 2.65
Cordially
-
- Registered User
- Posts: 43
- Joined: Thu May 19, 2016 2:43 pm
Re: phpbb 3-3-2 et recent Topics 2.2.14 - we_universal 2.6.4
I forgot to investigate this. It is back on my list.
-
- Registered User
- Posts: 594
- Joined: Thu Jul 09, 2015 5:03 pm
Re: phpbb 3-3-2 et recent Topics 2.2.14 - we_universal 2.6.4
I know that this is very late, but I now have a fix for this issue.
I think that it is a bug in the html template for the extension. It can be fixed by editing the file ext/paybas/recenttopics/styles/all/templates/recent_topics_body_top_bottom.html around line 22, changing:
to:
The change is moving the forabg class so that it does not overwrite the inner list.
I think that it is a bug in the html template for the extension. It can be fixed by editing the file ext/paybas/recenttopics/styles/all/templates/recent_topics_body_top_bottom.html around line 22, changing:
Code: Select all
<a class="category{% if S_EXT_COLCAT_HIDDEN %} hidden-category{% endif %}" style="display: none; height: 0"></a>
<div id="recent-topics-box" class="forabg recent-topics">
<div class="inner">
<ul class="topiclist">
<li class="header">
<dl class="row-item">
Code: Select all
<a class="category{% if S_EXT_COLCAT_HIDDEN %} hidden-category{% endif %}" style="display: none; height: 0"></a>
<div id="recent-topics-box" class=" recent-topics">
<div class="inner">
<ul class="topiclist">
<li class="forabg header">
<dl class="row-item">
-
- Registered User
- Posts: 594
- Joined: Thu Jul 09, 2015 5:03 pm
Re: phpbb 3-3-2 et recent Topics 2.2.14 - we_universal 2.6.4
Confirmed the fix works! Should we tell the author?
-
- Registered User
- Posts: 524
- Joined: Tue Feb 09, 2021 9:35 am
- Name: Daron Brewood
Re: phpbb 3-3-2 et recent Topics 2.2.14 - we_universal 2.6.4
Mike, FYI if the 'phpBB 3.2 3.3 Extension - Posts count' is installed that updates the various buttons with post counts like:
I thought you might be interested
I thought you might be interested

-
- Registered User
- Posts: 524
- Joined: Tue Feb 09, 2021 9:35 am
- Name: Daron Brewood
Re: phpbb 3-3-2 et recent Topics 2.2.14 - we_universal 2.6.4
Sorry I have been absent again (paid work keeps interfering with phpBB development).
Thanks for the updates. Can you notify the extension author (if you haven't already)?
Thanks for the updates. Can you notify the extension author (if you haven't already)?
-
- Registered User
- Posts: 594
- Joined: Thu Jul 09, 2015 5:03 pm
-
- Registered User
- Posts: 524
- Joined: Tue Feb 09, 2021 9:35 am
- Name: Daron Brewood
Re: phpbb 3-3-2 et recent Topics 2.2.14 - we_universal 2.6.4
Hello mike
Sorry for the late reply, I hadn't seen the fix.
It works perfectly.
Thank you very much
Sorry for the late reply, I hadn't seen the fix.
It works perfectly.
Thank you very much
-
- Registered User
- Posts: 43
- Joined: Thu May 19, 2016 2:43 pm