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)

malago List of achievements

I would love to see an Admin setting in the future to hide user's achievements from posts, especially if user achievements gets it's own UserPage 😉

new version installed, all works fine, but i see messages on console, maybe a log.

found a bug, i try to like a post but i receive an error: "oops something went wrong"
here the console:

    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.

      anyone knows how to remove the log? maybe is some options that i have?
      there are all images for the achievements:

        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 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.

              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.

                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?

                    Justoverclock This?

                    .Achievements--User .Badge {
                    box-shadow: none;
                    }

                    Try with the !important too.