Cant add / see post getting Warning: Division by zero
-
Getting Below warring message.. i cant add post and cant see also …
Warning: Division by zero in /wp-content/plugins/buddypress/bp-activity/bp-activity-template.php on line 783
Line No 783 : is
if ( ! empty( $activities_template->pag_page ) ) { $remaining_pages = floor( ( $activities_template->total_activity_count - 1 ) / ( $activities_template->pag_num * $activities_template->pag_page ) ); }
Full function of above :
/** * Return true when there are more activity items to be shown than currently appear. * * @since BuddyPress (1.5) * * @global object $activities_template {@link BP_Activity_Template} * @uses apply_filters() To call the 'bp_activity_has_more_items' hook. * * @return bool $has_more_items True if more items, false if not. */ function bp_activity_has_more_items() { global $activities_template; $remaining_pages = 0; if ( ! empty( $activities_template->pag_page ) ) { $remaining_pages = floor( ( $activities_template->total_activity_count - 1 ) / ( $activities_template->pag_num * $activities_template->pag_page ) ); } $has_more_items = (int) $remaining_pages ? true : false; return apply_filters( 'bp_activity_has_more_items', $has_more_items ); }
I cant add / see my Post … there is Load More link but when click it nothing happen .
domain.com/dashboard and domain.com/member/username
above both page does not works
below are the version i am using
Its not working on both pages thats ..WordPress : 3.9.1
BuddyPress : Version 2.0.1
BuddyPress Activity Comment Notifier : Version 1.0.8
BuddyPress Activity Plus : Version 1.6
BuddyPress Friends Only Activity Stream : Version 1.0pls help me
https://www.ads-software.com/plugins/buddypress-activity-plus/
- The topic ‘Cant add / see post getting Warning: Division by zero’ is closed to new replies.