Hi there, Frederick! Thanks for getting in touch and welcome to the forums. We hope you’re enjoying the plugin so far. š
Great question. I do want to note first of all, though, that we are fairly limited in terms of helping out with custom development questions like this one. That said, weād love to point you in the right direction if we can.
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 template file (located at /wp-content/plugins/wootickets/views/wootickets/tickets.php), 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 that make sense? Will that work for you? Please let me know. š
Cheers!
Geoff