SO I tried this in the views -> tickets.php file:
if ( $is_there_any_product ) {
?>
<h2 class=”tribe-events-tickets-title”><?php _e( ‘Reserve Spot’, ‘tribe-wootickets’ );?></h2>
<?php if ( is_logged() ) { ?>
<?php echo $contents; ?>
<?php if ( $is_there_any_product_to_sell ) { ?>
<tr>
<td colspan=”4″ class=’woocommerce’>
<button type=”submit” class=”button alt”><?php esc_html_e( ‘Add to cart’, ‘tribe-wootickets’ );?></button>
</td>
</tr>
<?php
}
}
else { ?>
<h4>You must be logged in as a Pro Stylist to request online reservations.</h4>
<?php
}
}
}
?>