About Page and user profile
About page in user profile doesn’t open or keep loading. Unable to add Cover photo to my profile as a site Admin.
also when I click to view the other users profile is doesn’t open.
Umar Pharouk commented
Here is the link below
http://www.flyanswers.com/user/Princefaqx/about/
Umar Pharouk commented
I think I’m missing something on line 48
Umar Pharouk commented
Warning: Division by zero in /home/princefaqx/public_html/flyanswers.com/wp-content/plugins/anspress-question-answer/theme/default/user/about.php on line 48
Kumar (AnsPress Support) commented
Mr. Aryan will check the issue after he return.
Umar Pharouk commented
Alright, Thank You @kumar
hello,
on /wp-content/plugins/anspress-question-answer/theme/default/user/about.php try to change the line 48 which is currently like this :
<span data-action="ap_chart" data-type="donut" data-peity='{ "fill": ["#9087FF", "#eeeeee"], "innerRadius": 20, "radius": 25 }'><?php echo ceil((ap_user_get_the_meta('__up_vote_casted')/ap_user_total_votes_casted())*100); ?>/100</span>
to
<?php $upVotePercent=0; if(ap_user_total_votes_casted()>0) $upVotePercent=ceil((ap_user_get_the_meta('__up_vote_casted')/ap_user_total_votes_casted())*100); ?> <span data-action="ap_chart" data-type="donut" data-peity='{ "fill": ["#9087FF", "#eeeeee"], "innerRadius": 20, "radius": 25 }'><?php echo $upVotePercent; ?>/100</span>
Can you share a link ?