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

时间:2020-07-27 16:34:48

标签: php wordpress woocommerce woocommerce-bookings timeslots

我正在使用Woocommerce预订。当某人预订某个日期/时间段时,它会在日历上为下一位客户显示该特定日期/时间段的(还剩98个)。有什么方法可以从日历中删除/隐藏此信息?感谢您的任何帮助!

screen shot of calendar showing 'tickets left'

1 个答案:

答案 0 :(得分:1)

以下内容将隐藏小时槽剩余的空间计数:

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文件中。经过测试,可以正常工作。