Hide the count of spaces left in Woocommerce Bookings

65 Views Asked by At

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?

enter image description here

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
    }
}
1

There are 1 best solutions below

0
Karmraj Zala On

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