MyBB Community Forums

Full Version: Lastposter avatar 3.0.x
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
Hi, great plugin

The avatar shows too much near to thread title and author:

[Image: CI3nHQ9.png]

Solution I have found is to add margin-right attribute to avatarep.css at .avatarep_img, avatarep_bg

Tested with margin-right: 4px
[Image: L8clrKT.png]

I'm posting just if someone has the same issue.
Also, will be great to fix at plugin or maybe find another method to make it better.

Thanks
The problem is where some themes have issues related to broken margins at all and it's not easy to style and customize.

That's why i've decided to add custom clases for every case and a generalized one, so take care that the margins are added into certain circumstances to customize at your own in every part of forums where the plugin works Smile

Thanks for you contribution i am sure multiple user find really helpfull.
Hey Neo,
Hope you are doing well. I just installed this plugin but saw the following JS error on the firefox console
ReferenceError: $ is not defined
@WallBB Do you use the last revision ? If so then do you have some js compression tool into the page ?

I think that is related to a missing piece of code or wrong call to jquery instance. But i am not sure at all.
The JS code is probably loading before jQuery. It can happen if you move the core JS to the footer, for example.
Does anyone know how to fix the following issue I am facing at the moment?

Basically the plugin works perfect, BUT! What I noticed is that if a member does not upload his avatar, on the main page (if he replied last to the post) his default preset avatar is not showing up. Only his username and invalide/broken image.
http://prntscr.com/szi82n
I am not quite sure where to look at, so any guidance would be appreciated Sad
That is related to a js conflict or an old veesion of the plugin.

Update the files to last revision and make sure that no js minify auto is running make the minimization manually is the best way to prevent issues.

In next revision i will add the minify version by the way.
I made sure that I am running the latest version.
Uh... I am really sorry about I have no idea how to make sure that no js minify auto is running make the minimization manually Confused would be possible to explain more about this? Unless there is already a topic on how to do that..


Edit: I do see this error though when I try to inspect element and choose Console

http://prntscr.com/szmnbc
What's your forum url.

It appears that you are fetching old js version or in wrong way to deal with the function or a wrong minimization as i said before but i need to see it live to try to figure it out what's going on.
(2020-06-14, 07:11 PM)Kieria Wrote: [ -> ]I made sure that I am running the latest version.
Uh... I am really sorry about I have no idea how to make sure that no js minify auto is running make the minimization manually Confused would be possible to explain more about this? Unless there is already a topic on how to do that..


Edit: I do see this error though when I try to inspect element and choose Console

http://prntscr.com/szmnbc

Ok i have seen your website and all is due a big issue into your headerinclude template, so you have to do this:

Go to your headerinclude template and you must have this code at the begining:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<!-- Place your kit's code here -->
    <script src="https://kit.fontawesome.com/653394edd6.js" crossorigin="anonymous"></script>
  </head>

You need to remove all that code and only use this one:

<!-- Place your kit's code here -->
    <script src="https://kit.fontawesome.com/653394edd6.js" crossorigin="anonymous"></script>

Reasons are too much because jQuery duplicated instances must have a js conflict and you have it already added by mybb core by default so that is unnecessary.

And you are closing header with that code and you have not to do that due that is the right problem into your website....

You are breaking many instances of mybb so i am very surprised that your forums not cause other issues by the way, but with that fix all must have to work.
Chears...
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36