Hello victoriahouseconcertb,
If you check out our Themer’s Guide, you could probably make a template override to display what you want.
You just need to make a copy of the /wp-content/plugins/wootickets/views/wootickets/tickets.php file, add it to the override in the appropriate spot, and print out $ticket->stock where you would like to put it.
For example if you add
71 echo “<td nowrap=’nowrap’ class=’tickets_stock’>”;
72 echo $ticket->stock . ‘ left’;
73 echo “</td>”;
After the ‘tickets_price’ column, it will add a stock column to the table.
Does this make sense? Let me know if this doesn’t work for you.
Cheers!
– Casey Driscoll