@zamky did you try to reboot your forum and log off and log back on? Are you sure your user is going to the correct place on his profile to upload an avatar?
Hovering a link = 404
-
Evening,
I have started my own theme and I've found a little but kinda anoying bug since it floods my console.
When I hover a link like<a href="#menu">
NodeBB tries to acces it (I think that's that) but since the path doesn't exist it returns an error in the console.
GET http://gg.dev:4567/404 404 (Not Found)
It seems like it's an AJAX call, am I missing something like a css class to prevent this or is this a bug / intentional. -
To prevent it you can add your link a data-ajaxify attribute.
Try
<a href="#menu" data-ajaxify="false">text</a>
-
@baris That's a workaround, no? Seems like it might affect cases where we have
href="#"
on the site as well... -
@baris Yes it's working.
Thanks. -
@esiao if you update to latest you shouldn't need to add a data-ajaxify anymore. https://github.com/NodeBB/NodeBB/issues/1938