php [WooCommerce预订] - 产品依赖

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php [WooCommerce预订] - 产品依赖相关的知识,希望对你有一定的参考价值。

/**
 * Will make it so the Dependencies tab shows on a Bookable product. 
 * 
 * @param array $tabs The list of tabs in a product's settings.
 */
function add_bookable_product_to_dependencies( $tabs ) {
	// Check to see if the class exists and if the tab is set.
	if ( class_exists( 'WC_Product_Dependencies' ) && isset( $tabs['dependencies'] ) ) {
		// If so, add our class for the JS hooks.
		$tabs['dependencies']['class'][] = 'show_if_booking';
	}
	return $tabs;
}
add_filter( 'woocommerce_product_data_tabs', 'add_bookable_product_to_dependencies', 999 );

以上是关于php [WooCommerce预订] - 产品依赖的主要内容,如果未能解决你的问题,请参考以下文章

php WooCommerce预订 - 首次预订的默认日历

php [WooCommerce预订]自动确认通过COD购买的预订

php [WooCommerce预订]在购物车预订到期时修改

php [WooCommerce预订]将日历默认为第一次预订

php WooCommerce预订 - 更改购物车到期日

php [WooCommerce预订]使用案例:创建一周的后续行动