View Full Version : Forum Display Enhancements - User Avatars In Thread Listing
DemOnstar
07-17-2013, 07:08 AM
They're in the codes you added.
Not sure what you mean here. The codes I added are the ones I downloaded with the product?
Otherwise, I haven't yet added code...
Amaury
07-17-2013, 03:16 PM
Not sure what you mean here. The codes I added are the ones I downloaded with the product?
Otherwise, I haven't yet added code...
Yes, and you can change the dimensions within those codes.
DemOnstar
07-18-2013, 05:57 AM
Ok, got it... I will try that next...
Amaury
07-18-2013, 01:20 PM
Ok, got it... I will try that next...
For example, this is one of the codes you added for this modification:
<a href="{vb:link member, {vb:raw thread}, null, 'postuserid', 'postusername'}"><img height="32px" width="32px" style="float:left;margin-right:4px" src="{vb:raw thread.avatarurl}" border="0" /></a>
Notice the width and height?
DemOnstar
07-19-2013, 11:12 AM
For example, this is one of the codes you added for this modification:
Notice the width and height?
Thanks. Job done..
kandhro
08-26-2013, 05:28 AM
Shabbir bhimani
Thanks for such a nice work
voted and nominated for MOTM
Best Regards
dhonchik
09-16-2013, 10:21 AM
Very nice, thanks!
shabbirbhimani, make please "User Avatars In Vbadvanced CMPS in New Thread module"
wcpmrj
10-10-2013, 07:06 PM
Hello, before I download and implement this, can someone tell me if there is a way to limit this to specific usergroups, as well as specific forums? Thanks!
shabbirbhimani
10-15-2013, 03:42 AM
Hello, before I download and implement this, can someone tell me if there is a way to limit this to specific usergroups, as well as specific forums? Thanks!
No. Thats not an option.
Harpo
11-14-2013, 12:55 PM
Something is wrong with my sub-forums. Well take a look at the below attachment.
I looked through the pages to find the fix but I already have the updated code. Any ideas anyone?:confused:
shabbirbhimani
11-15-2013, 11:44 AM
Something is wrong with my sub-forums. Well take a look at the below attachment.
I looked through the pages to find the fix but I already have the updated code. Any ideas anyone?:confused:
Looks like the CSS is messed up and PM me your forum details and will be more than happy to look into it.
scoutz
11-28-2013, 08:31 PM
Amazing mod, very editable and customisable! Good work dude!
ZUCCO
12-06-2013, 07:01 PM
Help I want to stop showing the avatar image in the replies list.
147448
shabbirbhimani
12-07-2013, 02:15 AM
Help I want to stop showing the avatar image in the replies list.
147448
Just don't add them in the templates and that should be fine.
ZUCCO
12-07-2013, 01:27 PM
Just don't add them in the templates and that should be fine.
Edit. Never mind, I figured it out. To stop showing the avatar images in the replies listing you have to avoid adding this code:
<a href="{vb:link member, {vb:raw thread}, null, 'lastposterid', 'lastposter'}"><img height="32px" width="32px" style="float:left;margin-right:4px" src="{vb:raw thread.lastposteravatarurl}" border="0" /></a>
Above
<dt>{vb:rawphrase last_post_by}</dt>
Or for some custom templates
<dt class="lastpostby hidden">{vb:rawphrase last_post_by}</dt>
shabbirbhimani
12-07-2013, 01:36 PM
What templates? I want avatar images to be shown next to thread but not next to the replies listing.
Just remove the last post information like
<dt>{vb:rawphrase last_post_by}</dt>
And then the changes in the templates should be removed.
ZUCCO
12-07-2013, 01:42 PM
Just remove the last post information like
<dt>{vb:rawphrase last_post_by}</dt>
And then the changes in the templates should be removed.
Yup, I edited my post, thanks for the prompt answer :)
yardimpaylas
12-15-2013, 05:07 PM
Good plugin, but how do I show the thread in?
shabbirbhimani
12-16-2013, 02:34 AM
Good plugin, but how do I show the thread in?
What do you mean by show the thread in?
fxdigi-cash
05-13-2014, 12:04 AM
I got an issue when changing the source url of the custom avatars. I moved the custom avatars to a cookieless domain and then double domain shows up on avatar url for thread last post avatar....
so it is hot showing because of this...
is there a way how to add my custom domain to {vb:raw thread.lastposteravatarurl} instead of it adding the default domain??
Thanks
shabbirbhimani
05-13-2014, 12:50 AM
Yes. You may need to edit the hook global_start which contains the function to fetch the avatar from the username. PM me your forum url and I can get the it done for you as well.
fxdigi-cash
05-13-2014, 01:59 AM
Yes. You may need to edit the hook global_start which contains the function to fetch the avatar from the username. PM me your forum url and I can get the it done for you as well.
Thanks for the reply. There is no hook global_start, but only the following:
forumbit_display
threadbit_display
search_results_postbit
search_results_threadbit
I can handle changes myself, so Thanks.
I just wanted to know what hook to edit to add my custom url!!
shabbirbhimani
05-13-2014, 02:04 AM
Thanks for the reply. There is no hook global_start, but only the following:
forumbit_display
threadbit_display
search_results_postbit
search_results_threadbit
I can handle changes myself, so Thanks.
I just wanted to know what hook to edit to add my custom url!!
Sorry my bad and that hook is for 3.x Version of this plugin. For 4.x each of those above hooks has the prefix of bburl as follows.
... $vbulletin->options['bburl'] . '/' . $thread[lastposteravatarurl][0];
You can replace
$vbulletin->options['bburl']
To your choice of prefix for your custom avatars.
fxdigi-cash
05-13-2014, 02:10 AM
I think I did it. I had to omit some part of the hook code to make it work on my custom domain.
I will post the method if anyone wants it..
Thanks...:)
fxdigi-cash
05-13-2014, 02:12 AM
Sorry my bad and that hook is for 3.x Version of this plugin. For 4.x each of those above hooks has the prefix of bburl as follows.
... $vbulletin->options['bburl'] . '/' . $thread[lastposteravatarurl][0];
You can replace
$vbulletin->options['bburl']To your choice of prefix for your custom avatars.
not to worry, you are right about the way how to do it... That's almost what I did...
I did it like this:
From this:
$vbulletin->options['bburl'] . '/' . $thread[lastposteravatarurl][0];
to This:
'' . $thread[lastposteravatarurl][0];
Thanks again :)
addamroy
05-15-2014, 11:12 AM
Does this mod have any options?
Also, can we set a default image if the user has no avatar?
bzcomputers
05-15-2014, 01:52 PM
Does this mod have any options? No
Also, can we set a default image if the user has no avatar? No
For default avatar use this mod:
https://vborg.vbsupport.ru/showthread.php?t=302807
obglobal.net
07-22-2014, 11:58 AM
Well that was officially the most in-depth, difficult thing I've ever done as admin/owner of my forum.
Thanks for the awesome step-by-step guide. You are a Lamen's dream!
I shall now sleep until Xmas. PHEW!
obglobal.net
08-05-2014, 12:53 PM
How do I go about adding only the "Last Post By" avatar, and leaving out the avatar of the member that started the thread?
Great mod, BTW. Thank you
shabbirbhimani
08-05-2014, 02:24 PM
How do I go about adding only the "Last Post By" avatar, and leaving out the avatar of the member that started the thread?
Great mod, BTW. Thank you
Just update those template in the where you are replacing
<dl class="threadlastpost td">
If you want the optimal code for not loading the avatars as well PM me.
obglobal.net
08-05-2014, 11:40 PM
Just update those template in the where you are replacing
<dl class="threadlastpost td">
If you want the optimal code for not loading the avatars as well PM me.
sorry, man. I don't understand what you mean.
______________
EDIT: it's OK, I found it. Thanks again for the great mod and the help. :)
shabbirbhimani
08-06-2014, 03:25 AM
sorry, man. I don't understand what you mean.
______________
EDIT: it's OK, I found it. Thanks again for the great mod and the help. :)
Glad you found it.
tini_lam
08-20-2014, 08:17 AM
will this mod get more Bandwidth ???
madness85
08-20-2014, 08:04 PM
Animation causes CPU load on browser for users.
shabbirbhimani
08-21-2014, 04:41 AM
will this mod get more Bandwidth ???
Yes it can to show more images in pages.
Braders
10-10-2014, 07:29 AM
Installed on 4.2.2 and works an absolute charm. Great work, thanks a million.
shabbirbhimani
10-13-2014, 10:30 AM
Installed on 4.2.2 and works an absolute charm. Great work, thanks a million.
The pleasure is all mine.
ku-med
03-21-2015, 08:06 AM
You have to add the html inside the lastpostby Div instead of its parent div. Let me know if I made any sense to you.
Hello, I didn't get that. Can you please explain how to do that in forumhome_forumbit_level2_post template ? Thanks!
Edit: I guess you've meant forumhome_lastpostby template ; but when i put the code there, it only shows an empty box and doesn't show the avatar ..
https://vborg.vbsupport.ru/external/2015/03/14.png
shabbirbhimani
04-06-2015, 02:21 AM
Hello, I didn't get that. Can you please explain how to do that in forumhome_forumbit_level2_post template ? Thanks!
Edit: I guess you've meant forumhome_lastpostby template ; but when i put the code there, it only shows an empty box and doesn't show the avatar ..
Can you share where you have done that and will be more than happy to look into the issue.
ku-med
04-06-2015, 11:57 AM
Thanks for your support :)
>> forumhome_lastpostby template
<vb:if condition="$show['lastpostinfo']">
<p class="lastposttitle">
<vb:if condition="$lastpostinfo['prefix']">{vb:raw lastpostinfo.prefix}</vb:if>
<a href="{vb:link thread, {vb:raw threadinfo}, {vb:raw pageinfo_newpost}}" class="threadtitle" title="{vb:rawphrase go_first_unread_in_thread_x, {vb:raw lastpostinfo.lastthread}}">{vb:raw lastpostinfo.trimthread}</a>
<a href="{vb:link thread, {vb:raw threadinfo}, {vb:raw pageinfo_lastpost}}#post{vb:raw lastpostinfo.lastpostid}"><img src="{vb:stylevar imgdir_button}/lastpost-{vb:stylevar right}.png" alt="{vb:rawphrase go_to_last_post}" /></a>
</p>
<a href="{vb:link member, {vb:raw forum}, null, 'real_lastposterid', 'real_lastposter'}"><img height="48px" width="48px" style="float:right;margin-left:4px" src="{vb:raw forum.avatarurl}" border="0" /></a>
<div class="lastpostby">
<vb:if condition="$lastpostinfo['lastposterid']">
{vb:raw memberaction_dropdown}
<vb:else />
{vb:raw lastpostinfo.lastposter}
</vb:if>
</div>
<p class="lastpostdate">{vb:raw lastpostinfo.lastpostdate}<vb:if condition="!$show['detailedtime']">, <span class="time">{vb:raw lastpostinfo.lastposttime}</span></vb:if></p>
<vb:else />
<span class="lastpostdate">{vb:raw lastpostinfo.lastpostdate} <vb:if condition="!$show['detailedtime']"><span class="time">{vb:raw lastpostinfo.lastposttime}</span></vb:if></span>
<a href="{vb:link thread, {vb:raw threadinfo}, {vb:raw pageinfo_lastpost}}#post{vb:raw lastpostinfo.lastpostid}"><img src="{vb:stylevar imgdir_button}/lastpost-{vb:stylevar right}.png" alt="{vb:rawphrase go_to_last_post}" /></a>
</vb:if>
shabbirbhimani
04-08-2015, 01:29 AM
Thanks for your support :)
>> forumhome_lastpostby template
<vb:if condition="$show['lastpostinfo']">
<p class="lastposttitle">
<vb:if condition="$lastpostinfo['prefix']">{vb:raw lastpostinfo.prefix}</vb:if>
<a href="{vb:link thread, {vb:raw threadinfo}, {vb:raw pageinfo_newpost}}" class="threadtitle" title="{vb:rawphrase go_first_unread_in_thread_x, {vb:raw lastpostinfo.lastthread}}">{vb:raw lastpostinfo.trimthread}</a>
<a href="{vb:link thread, {vb:raw threadinfo}, {vb:raw pageinfo_lastpost}}#post{vb:raw lastpostinfo.lastpostid}"><img src="{vb:stylevar imgdir_button}/lastpost-{vb:stylevar right}.png" alt="{vb:rawphrase go_to_last_post}" /></a>
</p>
<a href="{vb:link member, {vb:raw forum}, null, 'real_lastposterid', 'real_lastposter'}"><img height="48px" width="48px" style="float:right;margin-left:4px" src="{vb:raw forum.avatarurl}" border="0" /></a>
<div class="lastpostby">
<vb:if condition="$lastpostinfo['lastposterid']">
{vb:raw memberaction_dropdown}
<vb:else />
{vb:raw lastpostinfo.lastposter}
</vb:if>
</div>
<p class="lastpostdate">{vb:raw lastpostinfo.lastpostdate}<vb:if condition="!$show['detailedtime']">, <span class="time">{vb:raw lastpostinfo.lastposttime}</span></vb:if></p>
<vb:else />
<span class="lastpostdate">{vb:raw lastpostinfo.lastpostdate} <vb:if condition="!$show['detailedtime']"><span class="time">{vb:raw lastpostinfo.lastposttime}</span></vb:if></span>
<a href="{vb:link thread, {vb:raw threadinfo}, {vb:raw pageinfo_lastpost}}#post{vb:raw lastpostinfo.lastpostid}"><img src="{vb:stylevar imgdir_button}/lastpost-{vb:stylevar right}.png" alt="{vb:rawphrase go_to_last_post}" /></a>
</vb:if>
I don't see any reason for editing that template. I don't have any instructions to do that either.
Can you share the url of the page where you have the issue.
Vintum
06-01-2015, 08:51 PM
Added on 4.2.2 and so far it works great. Thanks!
3saltoot
10-02-2015, 10:41 PM
Thanks!...
blue7
11-04-2015, 10:52 AM
How to round the corners of the small avatars?
Like This:
https://vborg.vbsupport.ru/external/2015/11/3.jpg
Triky
12-23-2015, 08:47 PM
How to round the corners of the small avatars?
Like This:
You can do that with border-radius. Eg <img style="border-radius: 10px;" .. />
mangmel
01-30-2016, 05:03 AM
working well 4.2.3
markoroots
04-23-2016, 05:27 AM
Really great. Very useful plugin.
ringnews24
05-10-2016, 07:25 AM
How do I add a default avatar?
Thanks - Brill plugin
dany_danay
06-01-2016, 06:44 AM
Works great
HM666
06-23-2016, 11:20 PM
Works great! Thanks. I did add some css to make the avatars round as mentioned in a previous comment. For those who are unsure of how to do that here is what you will need to do:
On the first HTML code that you need to add to your threadbit template make the following changes to the code:
<a href="{vb:link member, {vb:raw thread}, null, 'postuserid', 'postusername'}"><img height="32px" width="32px" style="float:left;margin-right:4px;border:1px solid #000000;border-radius:30px" src="{vb:raw thread.avatarurl}" border="0" /></a>
You can certainly change the border color to a color you prefer on any of these.
border:1px solid #000000;
Change the hex color shown in bold red to a color of your choice. The color I have it set as is black.
forumhome_forumbit_level1_post and forumhome_forumbit_level2_post:
<a href="{vb:link member, {vb:raw forum}, null, 'real_lastposterid', 'real_lastposter'}"><img height="48px" width="48px" style="float:left;margin-right:4px;border:1px solid #000000;border-radius:30px" src="{vb:raw forum.avatarurl}" border="0" /></a>
search_threadbit:
<a href="{vb:link member, {vb:raw thread}, null, 'postuserid', 'postusername'}"><img height="32px" width="32px" style="float:left;margin:7px 4px 0 0;border:1px solid #000000;border-radius:30px" src="{vb:raw thread.avatarurl}" border="0" /></a>
2ND search_threadbit:
<a href="{vb:link member, {vb:raw thread}, null, 'lastposterid', 'lastposter'}"><img height="32px" width="32px" style="float:left;margin-right:4px;border:1px solid #000000;border-radius:30px" src="{vb:raw thread.lastposteravatarurl}" border="0" /></a>
search_results_postbit:
<a href="{vb:link member, {vb:raw post}, null, 'userid', 'username'}"><img height="32px" width="32px" style="float:left;margin-left:4px;border:1px solid #000000;border-radius:30px" src="{vb:raw post.avatarurl}" border="0" /></a>
Hope this helps some achieve round avatars :)
blah100
09-08-2016, 03:39 PM
Has anyone been able to make this work with just the thumbs of the avatars showing (like it does in sideblocks) rather than the fully animated avatars/gifs?
Has anyone been able to make this work with just the thumbs of the avatars showing (like it does in sideblocks) rather than the fully animated avatars/gifs?
Yes I'd like to suggest this improvement too, a lot of resources saved by using the thumbs instead of full avatar. Hopefully someone can post code change for this because TC will never come back.
blah100
09-09-2016, 04:00 AM
Yes I'd like to suggest this improvement too, a lot of resources saved by using the thumbs instead of full avatar. Hopefully someone can post code change for this because TC will never come back.
Resource saving is my goal as well. Almost all of my users use customavatars and of those are mostly gifs. Having just a small thumb rather than the full gif animating would save a lot.
Stratis
11-02-2016, 08:55 AM
help!
Copy and paste as it explains the guide. I had already cast in another forum and not had this problem.
Hope you did not forgot to chmod 0777 those folders in ftp :)
RaYdeN.ADM
11-02-2016, 09:00 AM
Hope you did not forgot to chmod 0777 those folders in ftp :)
hmm....
Avatars work well in the rest of the forum. Only here the URL fails.
Stratis
11-02-2016, 09:31 AM
As i see this source code is wrong
155452
http://cimsp.com/posts/http://cimsp.com/attachments/avatars/avatar3_43.gifIt supposed be like this
http://cimsp.com/attachments/avatars/avatar3_43.gifFrom some how maybe inserting code to wrong position. I am not a coder to help more :)
RaYdeN.ADM
11-02-2016, 10:45 AM
As i see this source code is wrong
155452
http://cimsp.com/posts/http://cimsp.com/attachments/avatars/avatar3_43.gifIt supposed be like this
http://cimsp.com/attachments/avatars/avatar3_43.gifFrom some how maybe inserting code to wrong position. I am not a coder to help more :)
Of course, that saying I'm right. I do not know how to solve, the code is such that the one in the guide.
thx
ps: i have 4.2.3 Patch Level 2
-----------------------------------------------------------------------------------
Solution for vB 4.2.3 Patch Level 2
Fetch Avatar in Forumbits
require_once(DIR . '/includes/functions_user.php');
if(is_array($lastpostinfo))
{
$forum[real_lastposterid] = $lastpostinfo[lastposterid];
$forum[real_lastposter] = $lastpostinfo[lastposter];
}
else
{
$forum[real_lastposterid] = $forum[lastposterid];
$forum[real_lastposter] = $forum[lastposter];
}
if($forum[real_lastposterid])
{
$forum[avatarurl] = fetch_avatar_url($forum[real_lastposterid]);
if (!$forum[avatarurl]) {
$forum[avatarurl] = $stylevar['imgdir_misc'] . 'images/misc/unknown.gif';
} else {
//$forum[avatarurl] = $vbulletin->options['bburl'] . '/' . $forum[avatarurl][0];
$forum[avatarurl] = $forum[avatarurl][0];
}
}
else
{
$forum[avatarurl] = $stylevar['imgdir_misc'] . 'images/misc/unknown.gif';
}
Fetch Avatar in Forumdisplay
require_once(DIR . '/includes/functions_user.php');
if($thread[postuserid])
{
$thread[avatarurl] = fetch_avatar_url($thread[postuserid]);
if (!$thread[avatarurl]) {
$thread[avatarurl] = $stylevar['imgdir_misc'] . 'images/misc/unknown.gif';
} else {
//$thread[avatarurl] = $vbulletin->options['bburl'] . '/' . $thread[avatarurl][0];
$thread[avatarurl] = $thread[avatarurl][0];
}
}
else
{
//$thread[avatarurl] = $vbulletin->options['bburl'] . '/' . $thread[avatarurl][0];
$thread[avatarurl] = $thread[avatarurl][0];
}
if($thread[lastposterid])
{
$thread[lastposteravatarurl] = fetch_avatar_url($thread[lastposterid]);
if (!$thread[lastposteravatarurl]) {
$thread[lastposteravatarurl] = $stylevar['imgdir_misc'] . 'images/misc/unknown.gif';
} else {
//$thread[lastposteravatarurl] = $vbulletin->options['bburl'] . '/' . $thread[lastposteravatarurl][0];
$thread[lastposteravatarurl] = $thread[lastposteravatarurl][0];
}
}
else
{
$thread[lastposteravatarurl] = $stylevar['imgdir_misc'] . 'images/misc/unknown.gif';
}
Fetch Avatar in Search Results Postbits
require_once(DIR . '/includes/functions_user.php');
if($post[userid])
{
$post[avatarurl] = fetch_avatar_url($post[userid]);
if (!$post[avatarurl]) {
$post[avatarurl] = $stylevar['imgdir_misc'] . 'images/misc/unknown.gif';
} else {
//$post[avatarurl] = $vbulletin->options['bburl'] . '/' . $post[avatarurl][0];
$post[avatarurl] = $post[avatarurl][0];
}
}
else {
$post[avatarurl] = $stylevar['imgdir_misc'] . 'images/misc/unknown.gif';
}
Fetch Avatar in Search Results threadbits
require_once(DIR . '/includes/functions_user.php');
if($thread[postuserid])
{
$thread[avatarurl] = fetch_avatar_url($thread[postuserid]);
if (!$thread[avatarurl]) {
$thread[avatarurl] = $stylevar['imgdir_misc'] . 'images/misc/unknown.gif';
} else {
//$thread[avatarurl] = $vbulletin->options['bburl'] . '/' . $thread[avatarurl][0];
$thread[avatarurl] = $thread[avatarurl][0];
}
}
else
{
//$thread[avatarurl] = $vbulletin->options['bburl'] . '/' . $thread[avatarurl][0];
$thread[avatarurl] = $thread[avatarurl][0];
}
if($thread[lastposterid])
{
$thread[lastposteravatarurl] = fetch_avatar_url($thread[lastposterid]);
if (!$thread[lastposteravatarurl]) {
$thread[lastposteravatarurl] = $stylevar['imgdir_misc'] . 'images/misc/unknown.gif';
} else {
//$thread[lastposteravatarurl] = $vbulletin->options['bburl'] . '/' . $thread[lastposteravatarurl][0];
$thread[lastposteravatarurl] = $thread[lastposteravatarurl][0];
}
}
else
{
$thread[lastposteravatarurl] = $stylevar['imgdir_misc'] . 'images/misc/unknown.gif';
}
alessi
10-24-2017, 08:57 AM
Nice Work! support great 4.2.4
iamme_meisi
12-18-2017, 05:31 AM
absolutely brilliant addition thank you so much for the time/effort
TheLordACS
02-03-2018, 06:45 PM
Works great! Thanks. I did add some css to make the avatars round as mentioned in a previous comment. For those who are unsure of how to do that here is what you will need to do:
On the first HTML code that you need to add to your threadbit template make the following changes to the code:
<a href="{vb:link member, {vb:raw thread}, null, 'postuserid', 'postusername'}"><img height="32px" width="32px" style="float:left;margin-right:4px;border:1px solid #000000;border-radius:30px" src="{vb:raw thread.avatarurl}" border="0" /></a>
You can certainly change the border color to a color you prefer on any of these.
border:1px solid #000000;
Change the hex color shown in bold red to a color of your choice. The color I have it set as is black.
forumhome_forumbit_level1_post and forumhome_forumbit_level2_post:
<a href="{vb:link member, {vb:raw forum}, null, 'real_lastposterid', 'real_lastposter'}"><img height="48px" width="48px" style="float:left;margin-right:4px;border:1px solid #000000;border-radius:30px" src="{vb:raw forum.avatarurl}" border="0" /></a>
search_threadbit:
<a href="{vb:link member, {vb:raw thread}, null, 'postuserid', 'postusername'}"><img height="32px" width="32px" style="float:left;margin:7px 4px 0 0;border:1px solid #000000;border-radius:30px" src="{vb:raw thread.avatarurl}" border="0" /></a>
2ND search_threadbit:
<a href="{vb:link member, {vb:raw thread}, null, 'lastposterid', 'lastposter'}"><img height="32px" width="32px" style="float:left;margin-right:4px;border:1px solid #000000;border-radius:30px" src="{vb:raw thread.lastposteravatarurl}" border="0" /></a>
search_results_postbit:
<a href="{vb:link member, {vb:raw post}, null, 'userid', 'username'}"><img height="32px" width="32px" style="float:left;margin-left:4px;border:1px solid #000000;border-radius:30px" src="{vb:raw post.avatarurl}" border="0" /></a>
Hope this helps some achieve round avatars :)
Hello, i added it and work perfectly but in the : forumhome_forumbit_level1_post and forumhome_forumbit_level2_post the round avatars does not work .
Can you help me to fix it:)? I will realy apreciate it , thank you !
Edit.: I figured it out , it was in additional css a code wich force my forums and forumbits to border-radius 0 . I deleted it and now work perfectly !
Thank you again!
HM666
02-03-2018, 08:41 PM
Hello, i added it and work perfectly but in the : forumhome_forumbit_level1_post and forumhome_forumbit_level2_post the round avatars does not work .
Can you help me to fix it:)? I will realy apreciate it , thank you !
Edit.: I figuret it out , i was in additional css a code wich force my forums and forumbits to border-radius 0 . I deleted it and now work perfectly !
Thank you again!
Ok great, glad you got it sorted. :)
rodriiverduguez
09-02-2018, 05:05 PM
Can THUMBS be used so that it consumes less?
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.