Updates for WoltLab Suite 6.2 are now available
https://elevenfour.net/article/209-updates-for-woltlab-suite-6-2-available/

| Web | https://elevenfour.net/ |
| pixelfed | https://pixelfed.social/elevenfour/ |
| GitHub | https://github.com/elevenfour |
| Letterboxd | https://letterboxd.com/eleven4rl/ |
Updates for WoltLab Suite 6.2 are now available
https://elevenfour.net/article/209-updates-for-woltlab-suite-6-2-available/
Kore (formerly known as Dark Core) is now available for WoltLab Suite (WS) 6.2.
If you have Dark Core in WS 6.1 uninstall Dark Core first, then upgrade to WS 6.2. Now you can install Kore.
Elyx is my first style for WoltLab Suite 6.2 - available now. It's also the first new design in a while.
Happy New Year 🎆
Welcome to another edition of this article series where I look back at the ups & downs of the past year, share a few numbers with you and set intentions for the new year. Feel free to grab a cup of coffee (or whatever else you like) and join me.
Do you want to add alpha transparency to an opaque hex colour with pure CSS? You can do something like:
.red-60 {
color: rgb(from #ff0000 r g b / .6);
}
This uses the rgb() function to set 60% opacity to the hex value of red.
The letters r g b (note the spaces between) are a representation of the red green and blue values of the hex colour. You can think of them as some sort of variable.
WoltLab Suite 6.2 introduces a new animation that shows buttons on an entry card (e.g. an article card) once you hover over that card. Which might look good but can slow you down if you need to mass edit entries (or something).
Here's some CSS to speed things up:
.entryCardList__item__buttons {
transition: opacity .12s ease-in-out .06s,transform .12s ease-in-out .06s;
}
And if you rather want to remove the animation:
.entryCardList__item__buttons {
transition: unset;
}
Just released: Pria 6.0.1 with some minor fixes for things that showed up although it wasn't meant to and some that showed up but you couldn't see it.
New year, new article. That's how the saying goes, right?
I just released a new plugin for WoltLab Suite 6.0 - “User Information Statistics: Display Articles“
For more info: https://elevenfour.net/user-information-statistics-display-articles-woltlab-suite/