"loved" used in notifications and not in translate?
Where can we change the use of "loved" in the notifications? It seems to be "like" everywhere else or at least can change where it's called likes, but not loved.
The strings are translateable. The 2 strings are:
- "%1$s and %2$s other people loved %3$s"
- "%1$s loved %2$s"
Ross FCAΒ Hi Ross, I'm looking for a way to customize the order of the left sidebar.
Currently, it's only possible to position custom menu links at the end of the menu bar.
However, I need a mix of spaces, courses, and custom links in the individual menu groups.
Is this possible with an add-on from you?
AndrΓ© SalierΒ Hey, yes my Widgets plugin would let you build a custom sidebar menu group and include different types of links (just now you'd need to manually add the space/course/custom link. You can either then disable your core groups, or choose to put these custom groups above the core ones. You can also set visibility of these groups based on user logged-in and space membership.
https://fluentcommunityaddons.com/download/1760/?tmstv=1743605366
Ross FCAΒ
Hey Ross,
I tested your fantastic addon and it works exactly the way I need it to.
However, I have an issue with the emojis.
The client doesn't want to use colorful emojis but rather icons in the brand color.
That's why we're using the shapes in the brand color as available in Fluent.
Is there a way to use these or custom icons instead?
AndrΓ© SalierΒ I'll look to add svg icon support in the next version. Just now I'd suggest maybe seeing if there's any suitable ASCII symbols that fit your need and copy paste them in there.
Ross FCAΒ Thank you, that helps for now. But it would be better if we could display icons.
I'd be happy if you could implement that.
Can someone check if this code will work for this?
function fluent_community_change_loved_to_liked( $translated_text, $text, $domain ) {
Β Β if ( $text === '%1$s loved %2$s' ) {
Β Β Β Β return '%1$s liked %2$s';
Β Β }
Β Β if ( $text === '%1$s and %2$s other people loved %3$s' ) {
Β Β Β Β return '%1$s and %2$s other people liked %3$s';
Β Β }
Β Β return $translated_text;
}
add_filter( 'gettext', 'fluent_community_change_loved_to_liked', 20, 3 );