Hello,
I use Ultimate Member plugin for Login and Registration which I want instead of WP Foro options.
I have disabled/hide 'Site Profile' option using CSS code and set Replace Author Avatar with Forum Profile Avatar to Yes.
If member upload avatar using forum account section then it is not updating at UM avatar.
Hi @ganeshk,
If Replace Author Avatar with Forum Profile Avatar option is enabled, wpForo will use WordPress hooks and replace Blog Post author and Comment author avatar with Forum avatar and this option works correct, it does for what it is created for, however this option won't change Profile System Avatars as they have higher priority on WordPress get_avatar Function.
Solution:
Download Code Snippets plugin.
Go to Dashboard > Snippets > Add New.
Insert the below code in code field:
remove_action( 'get_avatar', 'wpforo_avatar', 10 ); add_filter( 'get_avatar', 'wpforo_avatar', 99999, 5 );
Select Run snippet everywhere Radio and save the snippet.
Check that the new created snippet is active from Dashboard > Snippets > All Snippets.