这可能是一个菜鸟问题,但我已经搜索了很多东西并且没有找到答案。我已经将woocommerce购物车替换为我的子主题子文件夹。
我试图在woocommerce购物车中添加一个字段,因此它只会显示购物车小计乘以我定义的数字。即,购物车小计是3,000.00,我想定义乘数3,因此我要显示的字段必须显示9.000,00。
我已将字段标题添加到购物车:
<thead>
<tr>
<th class="product-remove"> </th>
<th class="product-quantity"><?php _e( 'Quantity', 'thefoxwp' ); ?></th>
<th class="product-subtotal"><?php _e( 'Total', 'thefoxwp' ); ?></th>
<th class="product-result"><?php _e( 'Total to be Received', 'thefoxwp' ); ?></th>
</tr>
</thead>
我要配置的字段是class="product-result"
。
它不是输入字段,只显示小计乘以我定义的数字。
我需要将此信息与woocommerce电子邮件一起发送给客户,并保存在我的订单详细信息中。
有人知道怎么做吗?
由于
答案 0 :(得分:0)
可以搞清楚。
我在标题
中添加了两个类<thead>
<tr>
<th class="product-remove"> </th>
<th class="product-quantity"><?php _e( 'Quantity', 'thefoxwp' ); ?></th>
<th class="product-subtotal"><?php _e( 'Total', 'thefoxwp' ); ?></th>
<th class="product-tax"><?php _e( 'Exchange Tax', 'thefoxwp' ); ?></th>
<th class="product-result"><?php _e( 'Total to be Received', 'thefoxwp' ); ?></th>
</tr>
</thead>
然后添加了此代码
<!-- Exchange Tax -->
<td class="product-tax">
<?php
$tax = 4.05;
echo "R$ $tax";
?>
</td>
<!-- Product Result -->
<td class="product-result">
<?php
$resultado = WC()->cart->subtotal;
$mostrar = $resultado * $tax;
echo "R$ "; echo number_format("$mostrar",2);
?>
</td>
所以现在echo
是购物车小计*兑换税的结果。
但是现在,如何在woocommerce发送的电子邮件和结帐页面上将此变量发送到echo
?