Avatar in the Recent Topics problem
2 posters
Page 1 of 1
Avatar in the Recent Topics problem
Technical Details
Forum version : #phpBB2Position : Administrator
Concerned browser(s) : Google Chrome
Screenshot of problem : https://i.imgur.com/7FC1Zfq.jpg
Who the problem concerns : Yourself
Forum link : http://879htzozacipcupes.hungarianforum.net
Description of problem
Hi!I use this
https://help.forumotion.com/t137749-avatar-in-the-recent-topics#931159
here is my code
- Code:
$(function(){
var style = document.createElement('STYLE'), css = '.mini_ava2>img{height:20px;margin-right:5px;width:20px;}';
style.type = 'text/css';
if (style.styleSheet) style.styleSheet.cssText = css;
else style.appendChild(document.createTextNode(css));
document.getElementsByTagName('HEAD')[0].appendChild(style);
if(!window.localStorage) return;
// Default avatar
var default_avatar= 'http://2img.net/i/fa/invision/pp-blank-thumb.png';
// Time of cache 24h*60m*60s*1000ms - one day
var caching_time= 60*1000;
// Time of cache in case of error 60s*1000ms - one minute
var caching_error= 60*1000;
var set_avatar= function(id) {
$('.mini_ava2.member'+id).html('<img src="'+get_avatar(id)+'" />');
};
var get_avatar= function(id) {
if(localStorage.getItem('t_ava'+id) < +new Date - caching_time || (localStorage.getItem('d_ava'+id)==default_avatar && localStorage.getItem('t_ava'+id) < +new Date - caching_error))
{
localStorage.setItem('d_ava'+id, default_avatar);
$.get('/u'+id, function (d){
localStorage.setItem('t_ava'+id,+new Date);
localStorage.setItem('d_ava'+id, $('#profile-advanced-right .module:first div img:first,.forumline td.row1.gensmall:first > img, .frm-set.profile-view.left dd img,dl.left-box.details:first dd img, .row1 b .gen:first img, .real_avatar img',d).first().attr('src')||default_avatar);
set_avatar(id);
});
}
return localStorage.getItem('d_ava'+id);
};
var to_replace= {};
$('#recentTopics a[href^="/u"]').each(function(){
to_replace[$(this).attr('href').substr(2)]= 1;
$(this).before('<span class="mini_ava2 member'+$(this).attr('href').substr(2)+'"></span>');
});
for(i in to_replace)
{
set_avatar(i);
};
});
this work perfect, but this code add a avatar to my who is online (mod_whoisonline)
I dont know why, but i dont want to add avatar for mod_whoisonline
I want avatar JUST mod_recent_topics. Somebody know why? And how i can fix it?
Maybe you know, you helped me last dear @luffy
Guest- Guest
Re: Avatar in the Recent Topics problem
The link to your forum does not load your forum.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Guest- Guest
Re: Avatar in the Recent Topics problem
Thanks, but guests can not see the widgets.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Avatar in the Recent Topics problem
Now is active. I hope you can help me. I am sorry but i forget. I hope you see everything and can u help me :S
I am so lost.. and i don't understand what is the problem.
I am so lost.. and i don't understand what is the problem.
Guest- Guest
Re: Avatar in the Recent Topics problem
May you post what the solution was?
-Brandon
-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: Avatar in the Recent Topics problem
Dear @brandon_g
I add
So the problem is Solved.
I add
- Code:
</div>
So the problem is Solved.
Guest- Guest
Re: Avatar in the Recent Topics problem
Thanks for posting the solution.
Topic solved and archived ~ brandon_g
|
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
Similar topics
» Avatar in the recent topics problem
» Avatar in the recent topics problem
» Problem with new recent topics widget
» Avatar problem in recent topic
» How can I add avatar in Recent Topics Widget?
» Avatar in the recent topics problem
» Problem with new recent topics widget
» Avatar problem in recent topic
» How can I add avatar in Recent Topics Widget?
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum