Icon to show users offline?
4 posters
Page 1 of 1
Icon to show users offline?
I always wanted to look at a feature where it shows the user is offline in a thread on a forum instead of people looking on the friend list is this possible?
Re: Icon to show users offline?
Yes it is possible, there should be a default one already there. If not try looking ACP-->Users and Usergroups--> Profile and see if there is one for online.
You can also check if there is an image/icon for this on your forum in ACP (Advanced mode)-->Display-->Pics Management look for an 'online' image in one of the tabs. If there is not one then you simply need to find an image you want to use and copy and paste the url to it in the space (if you have one on your computer then you can upload it and copy and paste the image url you get).
Hope this helps,
-Brandon
You can also check if there is an image/icon for this on your forum in ACP (Advanced mode)-->Display-->Pics Management look for an 'online' image in one of the tabs. If there is not one then you simply need to find an image you want to use and copy and paste the url to it in the space (if you have one on your computer then you can upload it and copy and paste the image url you get).
Hope this helps,
-Brandon
Remember to mark your topic when a solution is found.
General Rules | Tips & Tricks | FAQ | Forgot Founder Password?
Team Leader
Review Section Rules | Request A Review | Sticker Points
Re: Icon to show users offline?
Hello @Hagoromo Otsutsuki,
Could you provide a link to your forum ?
Thanks
Could you provide a link to your forum ?
Thanks
Re: Icon to show users offline?
Fictional Battle Omniverse.Ange Tuteur wrote:Hello @Hagoromo Otsutsuki,
Could you provide a link to your forum ?
Thanks
Re: Icon to show users offline?
Do you have an online icone in pics management ?
AP > Display > Pics management > Avance > Buttons > Online
On phpbb2, if you have an icon for it, it'll show somewhere under the post next to the arrows :
AP > Display > Pics management > Avance > Buttons > Online
On phpbb2, if you have an icon for it, it'll show somewhere under the post next to the arrows :
Re: Icon to show users offline?
You mean you want a offline icon to show when a member is offline and it to change when the member is online ?
Re: Icon to show users offline?
By default there's no offline icon, but we can add one with a bit of JavaScript. Go to modules > javascript codes management and create a new script
Placement : In the topics
To change the offline icon, replace https://2img.net/i/fa/subsilver/icon_delete.gif by the URL of your icon.
Placement : In the topics
- Code:
$(function() {
var offline = 'http://2img.net/i/fa/subsilver/icon_delete.gif';
for (var p = $('.messaging.gensmall'), i = 0, j = p.length; i<j; i++) {
for (var img = p[i].getElementsByTagName('IMG'), k = 0, l = img.length, match; k<l; k++) {
/i_icon_online/.test(img[k].className) && (match = true);
if (k == l - 1 && !match) {
var off = document.createElement('IMG');
off.src = offline;
off.title = 'Offline';
p[i].getElementsByTagName('TD')[0].appendChild(off);
}
}
}
});
To change the offline icon, replace https://2img.net/i/fa/subsilver/icon_delete.gif by the URL of your icon.
Similar topics
» Add Offline Icon
» How to add online/offline icon next to username?
» How can I make an online/offline text that will show in the topics, posts and profiles of users?
» icon next to users name
» Zodiac, gender and online/offline icon side by side on Topics
» How to add online/offline icon next to username?
» How can I make an online/offline text that will show in the topics, posts and profiles of users?
» icon next to users name
» Zodiac, gender and online/offline icon side by side on Topics
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum