Show total of items at the end of a table view
add_filter( ‘frm_display_inner_content_before_add_wrapper’, ‘table_view_total_row’, 10, 3 ); function table_view_total_row( $inner_content, $view, $args ) { if ( ! empty( $args[‘is_table_view’] ) ) { $total_columns = count( $args[‘box_content’] ); $total_items = count( $args[‘record_count’] ); $inner_content .= ‘<tr><td colspan=”‘ . intval( $total_columns ) .…Continue reading