数量和ACF值的WooCommerce Cart产品,变量问题

时间:2018-04-20 21:55:10

标签: wordpress woocommerce

我正在尝试从$cart_item['quantity']get_field('box_sqft')

获取值

我的尝试是根据数量框中的数量显示产品的总平方英尺。每个产品都有自定义字段,其中包含平方英尺值。

这是我目前的代码:

<?php

$sqft = get_field('box_sqft');
$qty =  $cart_item['quantity'];

$total = $qty * $sqft;

echo $total;

?>

我认为该解决方案与$_POST有关,但并非100%肯定。

1 个答案:

答案 0 :(得分:0)

我的解决方案是:

$sqft = get_field('box_sqft', $product_id);
$qty =  $cart_item['quantity'];
echo ($qty * $sqft);

@LoicTheAztec非常感谢您的帮助,但我没有理由探索您的解决方案。