malago i can't wait to see this new feauture! keep up the good work!! and let me know if i can do something (i'm not a developer, but i have experience with graphics stuff)
Flarum Achievements, reward your users for participating
new version installed, all works fine, but i see messages on console, maybe a log.
Justoverclock check your Flarum log file at <flarum>/storage/log
. The message in the console says there was a 500 response from the API, so the full error should have been logged by the backend.
clarkwinkelmann already done and fixed. @malago has updated the extension
Justoverclock Hi! Sorry for the delay, I found the log and removed it. Also, the comments in discussion achievement was not calculating it the right way so that was also fixed, please update!
0.2.5
- Removed JS log
- Fixed calculation for comments on discussion achievements
flarum update malago/flarum-achievements
I will keep an eye open for more issues.
malago great!
@malago can u assign another css clas to .Badge? actually is used by goup badges, so i cannot apply styles without touching them.
Justoverclock Did you try with .Achievements .Badge
(or similar, I can't remember the exact div that wraps the achievements)? I can change it yes, but I could do two classes to get only to that badge class.
for example, i would remove the border from achievement, but i cannot without modify the group badges, if u know solution tell me what i have to do
Justoverclock Try this:
.Achievements--User .Badge {
border: none;
}
Or whatever you want to change on the badge class inside the Achievements--User div.
not work for me
With the important flag maybe?
.Achievements--User .Badge {
border: none !important;
}
If it doesn't work I will remove the Badge class for only custom images, I will leave it for font awesome icons.
malago not work even like this
Justoverclock what border are you trying to delete? There is a box shadow and a border radius. The example I put here only deletes the border but try first with: background-color: red
and see if that picks up. Try a to remove the border with your code.
I will change the class later anyway
malago i need to remove the shadow border around the little achievement image...maybe i'm doing something wrong?
malago this actually works. thanks!