在 WooCommerce 中,我很清楚woocommerce_get_order_item_totals过滤器 kook 用于自定义订单总行,例如重新排序。
add_filter( 'woocommerce_get_order_item_totals', 'custom_order_of_from_order_table', 10, 2 );
function woocommerce_get_order_item_totals( $total_rows, $order ) {
// code here
return $total_rows;
}
我尝试在 WooCommerce 感谢页面上重新排序总金额中的小计以及总金额下方的付款方式,但没有成功。我的 PHP 知识非常有限,感谢您的帮助。
如何自定义订单表中的总行数,并在 WooCommerce 感谢页面上重新排序?
胡说叔叔