3.1.x Extensions Database 3.1 / 3.2 ⇒ Top Stats
-
- Users
- Posts: 279
- Joined: 15 Aug 2015, 20:25
Re: Top Stats
Here ya go Martin, and thank you :)
https://www.phpbb.com/community/viewtop ... &t=2367666
https://www.phpbb.com/community/viewtop ... &t=2367666
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.

-
- Admin
- Posts: 5105
- Joined: 06 Apr 2014, 16:12
Re: Top Stats
replace the code in that file with this
Code: Select all
<!-- IF (S_TSRAT_ENABLE and S_TS_JSSCROLL) or (S_TSRAT_ENABLE and S_TS_TICKER) -->
<!-- IF S_TS_JSSCROLL and not S_TS_TICKER -->
<!-- INCLUDEJS jquery.totemticker.min.js -->
<script type="text/javascript">
// ]]><![CDATA[<![CDATA[
$(document).ready(function() {
$('#vertical-ticker').totemticker({
row_height : '58px',
max_items : 3,
speed : {JSSCROLL_SPEED},
interval : {JSSCROLL_INTERVAL},
<!-- IF TS_JSSCROLL_NAVIGATION -->
next : '#ticker-next',
previous : '#ticker-previous',
stop : '#stop',
start : '#start',
<!-- ENDIF -->
mousestop : true,
direction : '<!-- IF TS_JSSCROLL_DIRECTION -->down<!-- ELSE -->up<!-- ENDIF -->'
});
});
// ]]>]]><![CDATA[
</script>
<!-- ELSEIF S_TS_TICKER and not S_TS_JSSCROLL -->
<!-- INCLUDEJS jquery.newsticker.js -->
<script type="text/javascript">
// ]]><![CDATA[<![CDATA[
$(document).ready(function() {
$("#news").newsTicker();
});
// ]]>]]><
But it had no effect. Purged and refreshed browser just to be safe. and no change
Edit: I'll try it on the test board and see what happens
Tried same thing on test board. No effect :(Edit: I'll try it on the test board and see what happens
Still 2 active topics instead of 3
Another Edit:
Just for grins I activated the list of last resisted members to logon, and now the j-scroll is working fine
-
- Admin
- Posts: 5105
- Joined: 06 Apr 2014, 16:12
Re: Top Stats
As you can see by the image it has 3 rows
the only change needed is this row_height : '58px',
There is a good chance its cached into your browser.
the only change needed is this row_height : '58px',
There is a good chance its cached into your browser.
-
- Users
- Posts: 68
- Joined: 15 Nov 2015, 21:47
Re: Top Stats
isn't that the line used to set out the height of the rows THEN there is a css rule which is your above setting X3 to make it show 3 rows.martin wrote: 04 May 2016, 23:01 As you can see by the image it has 3 rows
the only change needed is this row_height : '58px',
There is a good chance its cached into your browser.
58px X 3 = 174
so in the CSS file for extension i think you have something like
Code: Select all
ticker{
position:relative;
height: 123px;
overflow: hidden;
}
Code: Select all
height: 174px;
Board3 mods/extensions available/created by Talonos @ http://pretereo-stormrage.co.uk
-
- Admin
- Posts: 5105
- Joined: 06 Apr 2014, 16:12
Re: Top Stats
Correct but it fails so just change the row.
I posted a fix just for this on stokers site if i can find it il link to it.
I posted a fix just for this on stokers site if i can find it il link to it.
-
- Users
- Posts: 3
- Joined: 29 Aug 2015, 12:23
Re: Top Stats
Sorry if I failed to find an solution for this but jquery scrolls etc does not work/show with Arty styles such as latte and digi which are common used styles. Is there any way I can make this work? Thank you
Edit: topic preview ext doesnt work with this as well.
Edit: topic preview ext doesnt work with this as well.
-
- Founder
- Posts: 6466
- Joined: 13 Jan 2014, 21:45
Re: Top Stats
Is there a js conflict? can you see?niko wrote: 06 Jun 2016, 04:04 Sorry if I failed to find an solution for this but jquery scrolls etc does not work/show with Arty styles such as latte and digi which are common used styles. Is there any way I can make this work? Thank you
Edit: topic preview ext doesnt work with this as well.
-
- Users
- Posts: 77
- Joined: 05 Jun 2016, 20:18
Re: Top Stats
Has someone created the Spanish package for this extension?
Thanks!
Thanks!
-
- Users
- Posts: 12
- Joined: 28 Jun 2016, 08:24
Re: Top Stats
How can i get the collapse icon to work on this mod ? i have it for all my other forum section but not on this mod.
im on phpbb 3.1.9
im on phpbb 3.1.9
-
- Users
- Posts: 12
- Joined: 28 Jun 2016, 08:24
Re: Top Stats
its giving You are not authorised to read this forum. :(
-
- Users
- Posts: 2
- Joined: 05 Jul 2015, 21:32
Re: Top Stats
Very nice mod. I made it display next to the chatbox.
I just noticed it doesn't update with new topics, is there anyway to make it update without refreshing the page?
I just noticed it doesn't update with new topics, is there anyway to make it update without refreshing the page?
-
- Admin
- Posts: 5105
- Joined: 06 Apr 2014, 16:12
Re: Top Stats
Yes add ajax to it but then your host will moan.