Plugin Author
WPKube
(@wpkube)
Hi,
Tables should show.
Unless the excerpt limit is set to an amount where it does not reach to the table. Is content that you have after the table shown?
Or if in the plugin settings the “Remove all tags except the following” is selected and in the list of allowed tags the ones that are used by a a table (table, thead, tbody, tr, td) are not selected.
And the last thing that comes to mind is the theme imposing a limit of it’s own which is done in a way that our plugin is not able to affect. But if everything else works fine except for tables, then that should not be the problem.
Thread Starter
bd35
(@bd35)
The content is strictly the table. I set the limit quite high in order for everything to fit. I’m just doing a sample at this point, so it should definitely be within the limit.
The theme I’m using is Ratency – by progressive studios
All of the other things seem to work just fine, like tags.
Plugin Author
WPKube
(@wpkube)
Hi @bd35
Can you send over the URL to the site? I’ll get the full content of the post from there and add it to a post on my local WP site which I use for testing of the plugin.
Also send over a screenshot of the plugin settings page so I can replicate the same settings.
Hopefully I get the same problem and then I can figure out what’s causing it.
Thread Starter
bd35
(@bd35)
Plugin Author
WPKube
(@wpkube)
Hi @bd35
Try wrapping the whole thing in a table element.
Or use this example code to test:
<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
</tr>
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
</table>
Plugin Author
WPKube
(@wpkube)
Happy to hear that, you’re welcome.