简体   繁体   English

在Woocommerce管理员中添加新订单时隐藏常规和运输详细信息

[英]Hide general and shipping details when adding a new order in Woocommerce admin

In the admin page when you press "add new order" there is General Details, Billing Details and Shipping Details: 在管理页面中,当您按“添加新订单”时,将显示“常规详细信息”,“计费详细信息”和“运输详细信息”:

图片在这里

I would love to hide some these with CSS. 我想用CSS隐藏其中一些。 I've tried all day but have been able to achieve this unsuccessfully. 我一整天都在尝试,但未能成功实现。

I just want to keep the Billing details visible. 我只想使“ 帐单”详细信息可见。 Is that possible? 那可能吗?

This can be done simply with the following hooked function and some specific CSS rules: 只需使用以下挂钩函数和一些特定的CSS规则即可完成此操作:

add_action('admin_head', 'my_admin_head');
function my_admin_head() {
    ?>
    <style>
    .post-new-php.post-type-shop_order #postbox-container-2 .order_data_column_container > .order_data_column:first-child,
    .post-new-php.post-type-shop_order #postbox-container-2 .order_data_column_container > .order_data_column:last-child {
        display:none !important;
    }
    </style>
<?php
}

Code goes in function.php file of your active child theme (or active theme). 代码进入您的活动子主题(或活动主题)的function.php文件中。

Tested and works… 经过测试并可以工作…

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 禁止管理员在 WooCommerce 后端编辑订单发货详情 - Disabling the editing of the order shipping details by admin in WooCommerce backend WooCommerce 管理员创建订单并在订单付款时添加运费 - WooCommerce Admin Create Order & Adding Shipping on Order Pay 将运输方式添加到 Woocommerce 订单页面仅适用于管理员 - Adding shipping methods to Woocommerce Order Page for Admin only 根据送货方式 ID 在 WooCommerce 新订单电子邮件通知中隐藏送货地址 - Hide shipping address in WooCommerce new order email notification depending on shipping method id 在WooCommerce中,在所有订单的运送详细信息下添加新的输入字段,仅对管理员显示 - In WooCommerce Add new input field under shipping details for all orders which shows only for Admin 隐藏订单明细中的字段-WooCommerce - Hide Fields in Order Details - WooCommerce 在woocommerce订单确认页面隐藏发货方式 - Hide shipping method in the woocommerce order confirmation page 在 WooCommerce 管理订单列表中添加新列时显示产品名称的问题 - Issue when adding a new column in WooCommerce admin order list displaying product names WooCommerce - 如果使用某种运输方式,我如何才能停止将新订单 email 发送给管理员收件人? - WooCommerce - How can I stop the New Order email being sent to admin recipient if a certain shipping method is used? WooCommerce 手动下单不加运费 - WooCommerce Manual order not adding Shipping Zone Fee
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM