我想添加一个下拉菜单,访问者可以在其中选择 12 个月,然后根据该选择,分期显示每月的价格。
假设我有一个价格为120 美元的产品。横幅将告知客户:
“您可以在 installemets 中购买商品,选择号码”
例如,客户将选择 3 个月,在下拉菜单下方的横幅中,结果将为40 美元/月
目前我的代码只能使用 12 个月。
add_action( 'woocommerce_after_add_to_cart_button', 'show_installments', 20 );
function show_installments() {
global $product;
$id = $product->get_id();
$product = wc_get_product( $id );
$a = $product->get_price();
$b = 12;
$min = 25;
$c = round( $a / $b, 2);
if ($a > $min) {
echo '<p class="p2_installments_12months">Purchase with'.$c.'€ per month for 12 months </p>';
}
}
HUH函数