Hi @pochi555
There is an article about templates overriding
https://docs.ultimatemember.com/article/1516-templates-map
You need to customize your members-grid.php template in theme/child-theme and paste some code snippets inside your functions.php file in theme/child-theme.
function um_my_custom_ajax_get_members_data( $data_array, $user_id, $directory_data ) {
$data_array['wpforo_reputation'] = 'some function here for getting the wpforo reputation title and rating. please ask about the proper function in wpforo support team. My suggestion see here https://www.screencast.com/t/CnzaJBOLO';
return $data_array;
}
add_filter( 'um_ajax_get_members_data', 'um_my_custom_ajax_get_members_data', 10, 3 );
Then you can edit members-grid.php template this way https://www.screencast.com/t/CDTbRSivLVox
Let me know if you have other questions,
Best Regards!