我正在尝试从$cart_item['quantity']
和get_field('box_sqft')
我的尝试是根据数量框中的数量显示产品的总平方英尺。每个产品都有自定义字段,其中包含平方英尺值。
这是我目前的代码:
<?php
$sqft = get_field('box_sqft');
$qty = $cart_item['quantity'];
$total = $qty * $sqft;
echo $total;
?>
我认为该解决方案与$_POST
有关,但并非100%肯定。
答案 0 :(得分:0)
我的解决方案是:
$sqft = get_field('box_sqft', $product_id);
$qty = $cart_item['quantity'];
echo ($qty * $sqft);
@LoicTheAztec非常感谢您的帮助,但我没有理由探索您的解决方案。