0
在產品頁面中獲取客戶輸入的字數。計算產品附加固定金額的金額爲每500字以上額外10美元。Woocommerce根據客戶在產品頁面輸入的金額計算金額
例如:530 正常價格+附加價格:$ 180 + $ 10 總計:$ 190
- 詞數:1040 普通1.字數價格+附加價格:180 $ + 20 $ 總計:200 $
此過程爲創建動態輸入表格客戶計算金額的價格和總金額。
`$extra_amount = (int)'10';
$amount = (int)'180'; // how to get amount from woocommerce data
if(isset($_POST['wordnumber'])){ // how to get this paramater form woocommerce post values
$test =$_POST['wordnumber'];
$original_amount = '';
if($test <= (int)'500'){
$original_amount = $amount;
}
elseif($test > (int)'500'){
$div_amount = $test/(int)'500';
$round = floor($div_amount);
//echo '<br/>';
$total_extra = $round*$extra_amount;
$original_amount = $amount+$total_extra;
}
echo $original_amount;
}`
請你分享一下你的代碼,以便我們可以幫助你! –
這是我嘗試嵌入到woocommerce中的代碼 – nishanthi