Hi Greg,
great to hear that it works ??
For your further questions:
1. This is tricky, as all of these will have the same CSS classes (because they have the same table ID). Your best chance is probably to include a unique class that your theme gives to the <body>
element. In most themes, you have something like “post-123” or “page-123” there. You could use that as a prefix to the actual table CSS. If your theme doesn’t add this, you could wrap the Shortcodes in extra containers, like
<div class="...">
[table id=123 filter="..." hide_columns="..." /]
</div>
where you give a unique class to each <div>
that you have there, and then use that as a prefix for the CSS selector.
2.) So, you want to get just the content of a single cell? I did have some code for this for WP-Table Reloaded, but haven’t yet had the time to create an Extension for this for TablePress. I’ll add that to my TODO list though. Or if this is really urgent, please contact me via email (address is in the main plugin file “tablepress.php”). Maybe we can work something out.
Regards,
Tobias