Add custom class for table view
add_filter( ‘frm_views_table_class’, ‘table_view_class’, 10, 2 ); function table_view_class( $table_class, $args ) { // Remove zebra styling. $table_class = str_replace( ‘frm-alt-table’, ”, $table_class ); // Add custom class. $table_class .= ‘ your-custom-class’; return $table_class; }Continue reading