Welcome Guest [Log In] [Register]
We hope you enjoy your visit.

You're currently viewing our forum as a guest. This means you are limited to certain areas of the board and there are some features you can't use. If you join our community, you'll be able to access member-only sections, and use many member-only features such as customizing your profile, sending personal messages, and voting in polls. Registration is simple, fast, and completely free.


Join our community!


If you're already a member please log in to your account to access all of our features:

Username:   Password:
Multiquote (on) Multiquote (off)
Locked Topic
[Solved] Missing Administration and Moderator List · Replies to Your Topics · Active Topics · Top 10 Posters
Topic Started: Mar 15 2014, 08:05 PM (425 Views)
GodzillaV2
Member
[ *  * ]
I'm curently missing the following from my forum, its

Administration and Moderator List · Replies to Your Topics · Active Topics · Top 10 Posters Today · Top 10 Overall Posters

Any way to get them back would be much appreciated.
Offline Profile Goto Top
 
GodzillaV2
Member
[ *  * ]
Bump

Is there a reason my board doesnt have the "Administration and Moderator List · Replies to Your Topics · Active Topics · Top 10 Posters" or atleast id like the "active topics" to show.
Offline Profile Goto Top
 
DaPizzaMan
Member Avatar
#TeamSupport

Remove the following in your Theme Appearance:
Code:
 
#stats td.c_foot {
color:transparent;
}

#stats td.c_foot a {
display:none;
}
Offline Profile Goto Top
 
GodzillaV2
Member
[ *  * ]
Thanks that worked, but is there any way to keep 2 and get rid of 3 of them.
Offline Profile Goto Top
 
DaPizzaMan
Member Avatar
#TeamSupport

GodzillaV2
Mar 21 2014, 01:43 PM
Thanks that worked, but is there any way to keep 2 and get rid of 3 of them.
If you wouldn't mind removing the bullets between all of the links or leaving all the bullets, then try this (to remove all bullets):
Code:
 
#stats td.c_foot {
font-size:0;
}

#stats td.c_foot a {
font-size:11px;
}

#stats td.c_foot a[href="FIRST_LINK_TO_REMOVE"], #stats td.c_foot a[href="SECOND_URL"], #stats td.c_foot a[href="THIRD_URL"] {
display:none;
}
To keep all bullets, don't use the above but rather:
Code:
 
#stats td.c_foot a[href="FIRST_LINK_TO_REMOVE"], #stats td.c_foot a[href="SECOND_URL"], #stats td.c_foot a[href="THIRD_URL"] {
display:none;
}
Replace FIRST_LINK_TO_REMOVE, SECOND_URL, and THIRD_URL.

However, it wouldn't be possible to remove the bullets connecting to links that are hidden without using JavaScript. If that's what you prefer, you won't need anything above. Instead, use the following:
Code:
 
<script type="text/javascript">
var statsFoot = $('#stats td.c_foot span'),
footLinks = [
['FIRST URL', 'FIRST TEXT'],
['SECOND URL', 'SECOND TEXT']
];

statsFoot.empty();

for (var i = 0; i < footLinks.length; i++) {
if (i !== 0) statsFoot.append('· <a href="' + footLinks[i][0] + '">' + footLinks[i][1] + '</a>');
else statsFoot.append('<a href="' + footLinks[i][0] + '">' + footLinks[i][1] + '</a>');
}
</script>
Replace FIRST URL and SECOND URL with the URLs of the two links you want to keep, and then FIRST TEXT and SECOND TEXT with the text that you want to display for the corresponding URL.
Offline Profile Goto Top
 
GodzillaV2
Member
[ *  * ]
Yup i used the second code, thanks for the info.
Offline Profile Goto Top
 
1 user reading this topic (1 Guest and 0 Anonymous)
« Previous Topic · ZetaBoards Support · Next Topic »
Locked Topic