Show some tables on the same page in tabs
You need to create custom shortcode to combine the tables in one place.
In file functions.php add next code:
add_shortcode('woot_set_1', function() {
return woot()->do_set([
['title' => 'Alicante', 'content' => '[woot id=1]'],
['title' => 'Madrid', 'content' => '[woot id=3]'],
['title' => 'Barcelona', 'content' => '[woot id=4]'],
]);
});
Titles here means tabs titles.

