Hello,
Thanks for reaching out!
You can remove it from this page (and add it to another events page) by doing a template override. The template where this message is located can be found at wp-content/plugins/event-tickets-plus/src/views. If you’re using Easy Digital Downloads, then you’ll want to override the tickets.php found in the eddtickets folder. If you’re using WooCommerce, you’ll want to override the tickets.php file found in the wootickets folder. The code for the message can be found here:
if ( $available ) {
?>
<span class="tribe-tickets-remaining">
<?php
$readable_amount = tribe_tickets_get_readable_amount( $available, null, false );
echo sprintf( esc_html__( '%1$s available', 'event-tickets-plus' ),
'<span class="available-stock" data-product-id="' . esc_attr( $ticket->ID ) . '">' . esc_html( $readable_amount ) . '</span>'
);
?>
</span>
<?php
}
Note that depending on where you’re copying it to, you might have to tweak this code or use different code for the message to appear somewhere else.
We are limited in the amount of support that we can provide for customizations, but if you get stuck or have any questions, please let me know – I’ll be happy to try to point you in the right direction!
Thanks,
Jennifer