-2

我正在使用woocommerce_quantity_input 可插入功能将文本框中的数量输入修改为我网站上的下拉列表。

在购物车页面,输出数量输入时,我需要获取产品ID,以便我可以从单个产品页面中抓取一个ACF字段。

我的代码:

function woocommerce_quantity_input($data = null, $args = array(), $echo = true) {
    global $product;
    $set_quantity_limit = get_field('set_quantity_limit');
    if ( !$data || is_product() ) {
        $defaults = array(
            'input_id'   => '',
            'input_name'   => 'quantity',
            'input_value'   => '1',
            'max_value'     => apply_filters( 'woocommerce_quantity_input_max', '', $product ),
            'min_value'     => apply_filters( 'woocommerce_quantity_input_min', '', $product ),
            'step'         => apply_filters( 'woocommerce_quantity_input_step', '1', $product ),
        );
    } else {
        $defaults = array(
            'input_id'   => $data['input_id'],
            'input_name'   => $data['input_name'],
            'input_value'   => $data['input_value'],
            'step'         => apply_filters( 'cw_woocommerce_quantity_input_step', '1', $product ),
            'max_value'     => apply_filters( 'cw_woocommerce_quantity_input_max', '', $product ),
            'min_value'     => apply_filters( 'cw_woocommerce_quantity_input_min', '', $product ),
        );
    }

    if($set_quantity_limit){
        if ( ! $product->is_sold_individually() ) {
            $min = $defaults['min_value'] = 1;
            $max = $defaults['max_value'] = $set_quantity_limit;
            $step = $defaults['step'] = 1;
        }
    } else {
        if ( ! empty( $defaults['min_value'] ) )
            $min = $defaults['min_value'];
        else $min = 1;
    
        if ( ! empty( $defaults['max_value'] ) )
            $max = $defaults['max_value'];
        else $max = 6;
    
        if ( ! empty( $defaults['step'] ) )
            $step = $defaults['step'];
        else $step = 1;
        
    }
    
    $options = '';
    for ( $count = $min; $count <= $max; $count = $count+$step ) {
        $selected = (($count == $defaults['input_value']) ? ' selected' : '');
        $suffix_text_with_count = $count . ( ( $count == 6 ) ? ' - 1 Mastercase' : ' box - 12 ct.' );
        $options .= '<option value="' . $count . '"'.$selected.'>' . ( ( $set_quantity_limit ) ? $count : $suffix_text_with_count ) . '</option>';
    }
    $string = '<div class="quantity quantity_select" style="' . $defaults['style'] . '">';
        $string .= '<label class="screen-reader-text" for="' . esc_attr( $defaults['input_id'] ) . '">' . _x( 'Quantity', 'woocommerce' ) . '</label>';
        $string .= '<select ';
        $string .= 'name="' . esc_attr( $defaults['input_name'] ) . '" ';
        $string .= 'title="' . _x( 'Qty', 'Product Description', 'woocommerce' ) . '" ';
        $string .= 'class="qty">';
            $string .= $options;
        $string .= '</select>';
    $string .= '</div>';
    
    if ( $echo ) {
        echo $string;
    } else {
        return $string;
    }
}

此功能将更改应用于所有数量输入,而不仅仅是商店页面、单个产品页面和购物车页面上的那些。

4

1 回答 1

1

产品作为第二个参数传递给woocommerce_quantity_input函数。

所以像这样使用它:

function woocommerce_quantity_input( $args = array(), $product = null, $echo = true ) {
    if ( is_null( $product ) ) {
        $product = $GLOBALS['product'];
    }

    // Is a WC product
    if ( is_a( $product, 'WC_Product' ) ) {

        $product_id = $product->get_id();
    
        echo 'Product ID = ' . $product_id;
        // etc..
    }
}
于 2021-06-26T05:34:38.440 回答