i've added some css to make it more "modern".

but idk how can i change the position

@malago maybe could be awesome to have an "achievements" page on the sidebar, that show all the available achievements that a user could reach

edit: is it normal that i see this in console?

    Justoverclock Hello again, I made the some changes to where the achievement list is showing up. There are more span elements that will give you more flexibility for the CSS customization. I also removed the console.log line that was spamming.

    Please update to Version 0.2.3 and let me know how it works for you!

    flarum update malago/flarum-achievements

    I believe the extension is quite stable now, I might take a break and think about what to add next:

    • List of achievements
    • Add the option to hide an achievement from this list to make it a suprise

      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?