I want to remove/hide "(sinistra)" text from my WooCommerce Bookings reservations.
The site is in Italian, so "sinistra" means left.
Does anyone know what I should do?
I already tried entering this code but nothing
add_action('woocommerce_single_product_summary', 'hide_slot_count_spaces_left', 25 );
function hide_slot_count_spaces_left() {
global $product;
if( $product->is_type('booking') ) {
?><style> small.booking-spaces-left{ display:none !important; }</style><?php
}
}

Please add the css code in css file so it will apply before the page load.