【问题标题】:Get the custom field value in Woocommerce Edit Order pages custom metabox在 Woocommerce 编辑订单页面自定义元框中获取自定义字段值
【发布时间】:2017-07-31 05:28:10
【问题描述】:

enter image description here我正在尝试在帖子管理区域的自定义字段或单个订单页面的占位符上显示我放置的任何值。

我已经将 get_post_meta( get_the_id(), 'total-usd', true ) 放在引号 value="" 内,所以它不应该是空的,但是当我点击更新时它仍然显示为空。

我的代码似乎有什么问题?感谢您在这方面的帮助。

这是我的代码:

<?php

function cpmb_add_meta_box() {

    add_meta_box(
        'woocommerce-order-my-custom',
        'USD Currency display', 
        'cpmb_display_meta_box', 
        'shop_order',           
        'normal',               
        'core'
    );
}
add_action( 'add_meta_boxes', 'cpmb_add_meta_box');

function cpmb_display_meta_box( $post ) {

    wp_nonce_field( plugin_basename( __POST__ ), 'cpmb-nonce-field' );

    $html = '<label id="total-usd" for="total-usd">';
    $html .= '<strong>Total USD Currency</strong>';
    $html .= '</label><br />';
    $html .= '<input type="text" id="total-usd" name="Total USD Currency" value="' . get_post_meta( get_the_id(), 'total-usd', true ) . '" placeholder="Enter Total here" />';
    echo $html;
}

function cpmb_save_meta_box_data( $post_id ) {

    if ( cpmb_user_can_save( $post_id, 'cpmb-nonce-field' ) ){
    if ( isset( $_POST['total-usd'] ) && 0 < count( strlen( trim($_POST['total-usd'] ))))  {

            $total_usd = stripslashes( strip_tags($_POST['total-usd']));
            update_post_meta( $post_id, 'total-usd', $total_usd );
        }
    }
}
add_action( 'save_post', 'cpmb_save_meta_box_data' );

function cpmb_user_can_save( $post_id, $nonce ) {

    $is_autosave = wp_is_post_autosave( $post_id );
    $is_revision = wp_is_post_revision( $post_id );
    $is_valid_nonce = ( isset( $_POST[ $nonce ] ) && wp_verify_nonce($_POST[ $nonce ], plugin_basename( __POST__ ) ) );
    return ! ( $is_autosave || $is_revision ) && $is_valid_nonce;
}

?>

【问题讨论】:

    标签: php wordpress woocommerce custom-fields orders


    【解决方案1】:

    您的主要问题在于您的 &lt;imput&gt; 文本字段属性 name="Total USD Currency"。应该改为 name="total-usd"。此外,html id 属性应该是唯一的(你不能在你的和你的 html 标签中设置相同的 ID)

    我已更改您的代码:

    // Adding the metabox (on the right side)
    add_action( 'add_meta_boxes', 'cpmb_add_meta_box');
    function cpmb_add_meta_box() {
    
        add_meta_box(
            'woocommerce-order-my-custom',
            __('USD Currency display'),
            'cpmb_display_meta_box',
            'shop_order',
            'side',
            'core'
        );
    }
    // The metabox content
    function cpmb_display_meta_box( $post ) {
        // Get
        $total_usd = get_post_meta( $post->ID, 'total-usd', true );
    
        echo '<input type="hidden" name="cpmb_total_usd_nonce" value="' . wp_create_nonce() . '">
        <label class="total-usd" for="total-usd">
        <strong>Total USD Currency</strong></label><br />
        <input type="text" id="total-usd" name="total-usd" value="' . $total_usd . '" placeholder="'. __("Enter Total here").'" />';
    }
    
    // Save/Update the meta data
    add_action( 'save_post', 'cpmb_save_meta_box_data' );
    function cpmb_save_meta_box_data( $post_id ) {
    
        // Only for shop order
        if ( 'shop_order' != $_POST[ 'post_type' ] )
            return $post_id;
    
        ## Security verifications. ##
    
        // Check if our nonce is set (and our cutom field)
        if ( ! isset( $_POST[ 'cpmb_total_usd_nonce' ] ) && isset( $_POST['total-usd'] ) )
            return $post_id;
    
        $nonce = $_POST[ 'cpmb_total_usd_nonce' ];
    
        // Verify that the nonce is valid.
        if ( ! wp_verify_nonce( $nonce ) )
            return $post_id;
    
        // Checking that is not an autosave
        if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE )
            return $post_id;
    
        // Check the user’s permissions (for 'shop_manager' and 'administrator' user roles)
        if ( ! current_user_can( 'edit_shop_order', $post_id ) && ! current_user_can( 'edit_shop_orders', $post_id ) )
            return $post_id;
    
    
        ## SETTING AND UPDATING DATA (SECURITY PASSED) ##
    
        update_post_meta( $post_id, 'total-usd', sanitize_text_field( $_POST[ 'total-usd' ] ) );
    }
    

    代码进入您的活动子主题(或主题)的 function.php 文件或任何插件文件中。

    此代码在 WooCommerce 版本 3+ 上经过测试并且可以正常工作。

    你会得到这个:

    【讨论】:

    • 非常感谢,感谢您,并对后续问题表示抱歉。我如何回显显示的显示已经除以 0.75 之类的数字?就像它会显示 133.33 而不是 100?
    • @FloranteFerrer 请Is this answer is answering your question?...我认为是的,它正在回答...您在谈论什么计算,因为它不在您的问题中?所以也许你应该澄清你关于“计算”的问题......
    猜你喜欢
    • 2018-08-25
    • 2018-07-02
    • 1970-01-01
    • 2018-10-01
    • 1970-01-01
    • 2018-10-30
    • 1970-01-01
    • 2018-03-18
    • 2021-05-09
    相关资源
    最近更新 更多