Hello and welcome back!
Check out this recent support thread from Brook and let me know if it helps remove the RSVP option.
To rename the WooCommerce label, try adding the following snippet to your theme’s functions.php file:
/**
* Change WooCommerce tickets label
*/
function change_woo_label() { ?>
<script>
jQuery(document).ready( function ( ){
jQuery('input[value="Tribe__Tickets_Plus__Commerce__WooCommerce__Main"]').next().html('Ticket Sales');
});
</script>
<?php
}
add_action('wp_head', 'change_woo_label');
Feel free to respond with any follow-up questions or comments. Thank you for reaching out and enjoy the rest of your day.