Limited Support
Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.
We appreciate your patience and understanding while our team is away. Thank you for being part of the wpForo community!
Merry Christmas and Happy Holidays! 🎄
Is there any fancy css I can use to hide the parenthesis ( ) around the Nicename under a user's profile? (I just think it will look cleaner and will be easier to read)
such as using ::first-letter and ::last-letter.
I tried different combinations and never seemed to get the right combination of selector and ::xx-letter.
Thanks!
Hi @curtisb,
I'm sorry but that's not possible. We'll add a filter hook in next version to allow you filter and remove unnecessary characters.
Hi @curtisb,
Let's try this. Put this code in a PHP snippets using Code Snippets plugin or in the functions.php file of your current active WordPress theme, delete all caches and check it:
add_filter( 'wpforo_member_nicename', function($nicename){
return str_replace(array('(', ')'), '', $nicename);
});