我正在尝试将全局变量设置为标志。我想在thankyou.php 模板中使用它来在订购的商品没有库存时显示自定义消息。这不起作用。
我在functions.php中的代码:
<?php
global $woocommerce;
global $flag_custom_order;
$flag_custom_order=false;
$items = $woocommerce->cart->get_cart();
foreach($items as $item => $values) {
$_product = wc_get_product( $values['data']->get_id());
$stock=$_product->get_stock_quantity();
if ($stock <= '0') :
$flag_custom_order=true;
endif;
}
在模板中thankyou.php我添加了这个:
猛跑小猪