User Profiles Issues and Question

3.90K viewsThemes
0

Rahul, check this out as well: https://yadi.sk/i/O7POog54g3wcB (screenshot)

Following errors appear under reputation on user profile.

Notice: Trying to get property of non-object in /Applications/MAMP/htdocs/collaborate/wp-includes/comment-template.php on line 665

Notice: Trying to get property of non-object in /Applications/MAMP/htdocs/collaborate/wp-includes/comment-template.php on line 668

Notice: Trying to get property of non-object in /Applications/MAMP/htdocs/collaborate/wp-includes/comment-template.php on line 824

Also, is there a way for admins to change up reputation points for a user? And, what about the title names for user levels??

0

I am checking your issue, will release a patch.
for modifying level options, simply use this filter:

//filter for modifying levels
add_filter( 'ab_user_levels', 'my_custom_levels );
function my_custom_levels($levels){
	var_dump($levels);

	return $levels;
}