inherit
213990
0
Aug 29, 2019 10:08:59 GMT -8
Hernandez
162
September 2014
ziden
|
Post by Hernandez on Nov 24, 2014 10:07:13 GMT -8
Please can someone Generate or Find code Make a To Poster Templater Example like this : I found this in a SM Forum
|
|
inherit
213990
0
Aug 29, 2019 10:08:59 GMT -8
Hernandez
162
September 2014
ziden
|
Post by Hernandez on Nov 25, 2014 12:12:52 GMT -8
Bump
|
|
inherit
213990
0
Aug 29, 2019 10:08:59 GMT -8
Hernandez
162
September 2014
ziden
|
Post by Hernandez on Nov 27, 2014 11:40:13 GMT -8
Bump
|
|
inherit
209486
0
Mar 6, 2016 15:03:59 GMT -8
T.C.
2,614
May 2014
tacochuck
|
Post by T.C. on Nov 27, 2014 15:49:53 GMT -8
You can place this at the very bottom of your forum wrapper, it will be in the nav tree.
Edit if you like, this will show top posters, recent threads, birthdays and recent posts.
<script>
$(function(){
var recent = $("a.recent-threads-button");
recent.clone().attr("href", "/members?dir=desc&sort=posts").html(" Top Posters").insertBefore($("#navigation-tree"));
recent.clone().attr("href", "/posts/recent").html("Recent Posts").insertBefore($("#navigation-tree"));
recent.clone().attr("href", "/members?dir=asc&sort=name&view=birthdays").html("Today's Birthdays").insertBefore($("#navigation-tree"));
recent.clone().attr("href", "/threads/recent").html("Recent Topics").insertBefore($("#navigation-tree"));
if (proboards.data("route").name == "home") {
var lastUpdated = $(".last-updated > a").attr("href");
recent.clone().attr("href", lastUpdated).html("Last Post").insertBefore($("#navigation-tree"));
};
});
</script>
|
|
inherit
213990
0
Aug 29, 2019 10:08:59 GMT -8
Hernandez
162
September 2014
ziden
|
Post by Hernandez on Dec 1, 2014 10:46:32 GMT -8
Dont Work ! Bump
|
|
inherit
209486
0
Mar 6, 2016 15:03:59 GMT -8
T.C.
2,614
May 2014
tacochuck
|
Post by T.C. on Dec 1, 2014 11:06:08 GMT -8
It works on every theme i have, you can stick this in the navigation bar Your Forum Url/members?dir=desc&sort=posts
|
|
inherit
First Contributor
66253
0
Mar 18, 2024 11:09:20 GMT -8
aRMY83
2,925
December 2005
army83
|
Post by aRMY83 on Dec 1, 2014 11:44:57 GMT -8
|
|
inherit
209486
0
Mar 6, 2016 15:03:59 GMT -8
T.C.
2,614
May 2014
tacochuck
|
Post by T.C. on Dec 1, 2014 11:59:01 GMT -8
Updated code, looks as though i left a piece of code out Place at the bottom of the layout.
|
|
inherit
First Contributor
66253
0
Mar 18, 2024 11:09:20 GMT -8
aRMY83
2,925
December 2005
army83
|
Post by aRMY83 on Dec 1, 2014 12:05:59 GMT -8
Hello again T.C.Working like a charm and real nice! Just may use this over at my site. Edit: Can the top poster show only, let's say, the top 5?
|
|
inherit
209486
0
Mar 6, 2016 15:03:59 GMT -8
T.C.
2,614
May 2014
tacochuck
|
Post by T.C. on Dec 1, 2014 12:14:36 GMT -8
I wouldn't know how to accomplish that aRmy83, i didn't create the code, just sharing
|
|
inherit
First Contributor
66253
0
Mar 18, 2024 11:09:20 GMT -8
aRMY83
2,925
December 2005
army83
|
Post by aRMY83 on Dec 1, 2014 12:16:45 GMT -8
May have a problem to your code when clicking on a post to read: Seems that there is a duplicate of everything showing.
|
|
inherit
209486
0
Mar 6, 2016 15:03:59 GMT -8
T.C.
2,614
May 2014
tacochuck
|
Post by T.C. on Dec 1, 2014 12:27:30 GMT -8
I updated and promise it is right this time
|
|
inherit
First Contributor
66253
0
Mar 18, 2024 11:09:20 GMT -8
aRMY83
2,925
December 2005
army83
|
Post by aRMY83 on Dec 1, 2014 12:39:50 GMT -8
Sadly T.C. it has the same problem when clicking on a posted thread:
|
|
inherit
209486
0
Mar 6, 2016 15:03:59 GMT -8
T.C.
2,614
May 2014
tacochuck
|
Post by T.C. on Dec 1, 2014 12:42:52 GMT -8
Are you sure you don't have it in their twice?
|
|
inherit
First Contributor
66253
0
Mar 18, 2024 11:09:20 GMT -8
aRMY83
2,925
December 2005
army83
|
Post by aRMY83 on Dec 1, 2014 12:52:03 GMT -8
Are you sure you don't have it in their twice? I wish that were the case as it's really a nice piece of work. Just maybe one of the ProBoards Staff or Coders could assist you in getting it to function as it should. I'd be more than happy to, but there is a limit on what I can and cannot do with coding.
|
|