隐藏 Woocommerce 预订中时间段剩余的空间数

Hide the count of spaces left from time slots in Woocommerce Bookings

我正在使用 Woocommerce 预订。当有人预订某个 date/time 时段时,它会在下一位客户的日历上显示,对于该特定 date/time 时段,还有 (剩余 98 个)。 removing/hiding 有什么方法可以从日历中获取这些信息吗?非常感谢收到任何帮助!

以下将隐藏时段剩余的空格数:

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

代码进入您的活动子主题(或活动主题)的 functions.php 文件。已测试并有效。