Hi,
thank you for your prompt reply!
I’ve tried adding this to my functions.php
add_filter( 'tablepress_table_output', 'tp_add_wrapper', 10, 3 );
function tp_add_wrapper( $output, $table, $render_options ) {
$output = "<div class=\"tablepress-wrapper\">\n{$output}\n</div>";
return $output;
}
Then I refresh the page but the wrapper div doesn’t appear around the table.
The table is inserted into my contact page using a shortcode like this:
[table id=1 /]