在“添加新销售订单”页面中执行客户搜索时显示billing_company

时间:2019-02-04 09:16:27

标签: wordpress woocommerce action-filter wordpress-hook

在销售订单表单中执行客户搜索时,我是否知道如何在结果返回时显示$ user-> billing_company?理想情况下,我考虑使用过滤器/操作挂钩,而不是修改class-wc-meta-box-order-data.php中的核心文件

到目前为止,能够基于$ user-> billing_company搜索客户,结果将显示在编辑订单页面上,但不会显示在添加新订单页面上($ user-> billing_company不会真正显示输入并单击搜索结果的时间)

图片: https://i.stack.imgur.com/o4yfW.png

https://i.stack.imgur.com/pjfEM.png

修改后的代码:

esc_html__( '[%4$s] %1$s (#%2$s – %3$s)', 'woocommerce' )
        $user->display_name,
        absint( $user->ID ),
        $user->user_email, $user->billing_company

来自class-wc-meta-box-order-data.php的原始代码:

<?php
$user_string = '';
$user_id     = '';
if ( $order->get_user_id() ) {
    $user_id = absint( $order->get_user_id() );
    $user    = get_user_by( 'id', $user_id );
    /* translators: 1: user display name 2: user ID 3: user email */
    $user_string = sprintf(
        esc_html__( '%1$s (#%2$s &ndash; %3$s)', 'woocommerce' ),
        $user->display_name,
        absint( $user->ID ),
        $user->user_email
    );
}
?>
<select class="wc-customer-search" id="customer_user" name="customer_user" data-placeholder="<?php esc_attr_e( 'Guest', 'woocommerce' ); ?>" data-allow_clear="true">
    <option value="<?php echo esc_attr( $user_id ); ?>" selected="selected"><?php echo htmlspecialchars( $user_string ); ?></option>
</select>
<!--/email_off-->
</p>
<?php do_action( 'woocommerce_admin_order_data_after_order_details', $order ); ?>

提前谢谢!

1 个答案:

答案 0 :(得分:0)

以下挂钩函数可让您显示账单公司而无需修改核心文件:

add_filter(  'gettext',  'change_admin_single_order_heading3', 10, 3 );
add_filter(  'ngettext',  'change_admin_single_order_heading3', 10, 3 );
function change_admin_single_order_heading3( $translated, $text, $domain  ) {
    global $pagenow, $theorder;

    if ( is_admin() && $pagenow === 'post.php' && isset($_GET['post']) && get_post_type($_GET['post']) === 'shop_order' )
    {
        if( $text === '%1$s (#%2$s &ndash; %3$s)' && $domain === 'woocommerce' && $theorder->get_user_id() > 0 ){
            // Get user meta billing company
            if( $billing_company = get_user_meta( $theorder->get_user_id(), 'billing_company', true ) ) {
                $translated = esc_html__( '['.$billing_company.'] %1$s (#%2$s &ndash; %3$s)', $domain );
            }
        }
    }
    return $translated;
}

代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。

enter image description here

  

但是执行搜索时将无法显示它,因为搜索选项是用ajax提取的。