WooCommerce - 自定义" Total"谢谢你收到订单的文字

时间:2016-09-13 22:11:04

标签: php wordpress woocommerce gettext orders

在WooCommerce中,我的谢谢你页面上有一个问题(一旦客户下了订单)。我试图手动改变它,但问题是代码是在一个我无法找到的未知文件中生成的。

    <tfoot>
        <?php
                foreach ( $order->get_order_item_totals() as $key => $total ) {
                    ?>
                    <tr>
                        <th scope="row"><?php echo $total['label']; ?></th>
                        <td><?php echo $total['value']; ?></td>
                    </tr>
                    <?php
                }
            ?>
    </tfoot>

此代码会在订单中向我提供所有信息,例如优惠券和运费等。

enter image description here

在这张图片上,我想用 {替换黑色边框矩形中的文字(此处 'Gesamt:' 表示 "Total" {1}}

此外,我想删除红色边框矩形块: "Total inkl. vat"

有可能吗?
我该怎么办?

感谢。

2 个答案:

答案 0 :(得分:3)

此处是感谢页面中加载的 woocommerce/order/order-details.php 模板结尾的摘录。

  

使用 'Total' 方法覆盖 foreach 循环显示的 get_order_item_totals() 文字对于 $order 对象(生成 key/values 的数组),您必须为每个对象添加一个条件您的网站使用的语言。在我的代码中,你有英语和德语。

在您的有效主题中,转到 woocommerce > order ,然后打开/修改 order-details.php 模板文件。

用以下内容替换模板的末尾:

    <tfoot>
        <?php
            $order_item_totals = $order->get_order_item_totals();
            $count_lines = count($order_item_totals) - 1;
            $count = 0;
            foreach ( $order_item_totals as $key => $total ) {
                $count++;
                // The condition to replace "Total:" text in english and german
                if( $total['label'] == 'Total:' || $total['label'] == 'Gesamt:')
                    $total_label = __( 'Total inkl. vat:', 'woocommerce' );
                else 
                    $total_label = $total['label'];
                // End of the condition
                ?>
                <tr>
                    <th scope="row"><?php echo $total_label; // <== == Replaced $total['label'] by $total_label ?></th>
                    <td><?php echo $total['value']; ?></td>
                </tr>
                <?php
                // this should avoid displaying last line
                if( $count >= $count_lines ) break;
            }
        ?>
    </tfoot>
</table>

<?php do_action( 'woocommerce_order_details_after_order_table', $order ); ?>

<?php if ( $show_customer_details ) : ?>
    <?php wc_get_template( 'order/order-details-customer.php', array( 'order' =>  $order ) ); ?>
<?php endif; ?>

现在你可以保存,你已经完成了......

此代码经过测试且有效。

参考文献:

答案 1 :(得分:2)

嘿,我觉得这对你有用

确保inkl. 19%....写得正确。

foreach ( $order->get_order_item_totals() as $key => $total ) {
    ?>
    <tr>
        <th scope="row"><?php echo ($total['label']=='inkl. 19% Mwst.'?'Vat Only':$total['label']); ?></th>
        <td><?php echo $total['value']; ?></td>
    </tr>
    <?php
}