感谢您的支持和回复,经过大量研究,我得到了以下代码的结果。
为了达到最终结果,我必须安装 WC Fields Factory 插件并使用控制台日志或变量 def 传递动态值
第 1 步:在 .js 文件下使用此代码,并确保在单击按钮时触发它。
$w.event.subscribe("item.book.click", function(item) {
$('[name="room_type"]')[0].value = item[3].Name;
$('[name="date"]')[0].value = item[4].date;
$('[name="nights"]')[0].value = item[4].period;
$('[name="adults"]')[0].value = item[4].adults;
$('[name="children"]')[0].value = item[4].children;
$('[name="infants"]')[0].value = item[4].infants;
$('[name="cost"]')[0].value = item[3].Availability.Cost;
$('[name="add-to-cart"]')[0].click(); // Clicked on add to cart button
});
动态获取自定义成本值的 function.php 代码。
/* Price Update Based On Plugin WC Field */
function calculate_cart_total( $cart_object ) {
$additionalPrice = 0;
foreach ( $cart_object as $key => $valueArray ) {
if(is_array($valueArray)) {
foreach ( $valueArray as $k => $value ) {
if($value['wccpf_cost']) {
$additionalPrice = $value['wccpf_cost']['user_val'];
}
}
}
}
foreach ( WC()->cart->get_cart() as $key => $value ) {
if( method_exists( $value['data'], "set_price" ) ) {
$value['data']->set_price( $additionalPrice );
} else {
$value['data']->price = ($additionalPrice );
}
}
}
add_action( 'woocommerce_before_calculate_totals', 'calculate_cart_total', 99 );
/* before addto cart, clear cart values */
add_filter( 'woocommerce_add_to_cart_validation', 'woo_custom_add_to_cart_before' );
function woo_custom_add_to_cart_before( $cart_item_data ) {
global $woocommerce;
$woocommerce->cart->empty_cart();
// Do nothing with the data and return
return true;
}
在 WC Fields Factory 下,我创建了 room_type、日期、夜晚、成人、儿童、婴儿、成本字段,并且相应地动态获取 onclick 值。