在Woocommerce中获取产品重量单位自定义字段

时间:2018-02-19 08:25:21

标签: php wordpress woocommerce product

我想在数量字段中显示产品单位(将使用CSS将单位定位在数量字段内)。

如何从产品对象中检索产品单元?

例如: kg,qm,l,...

enter image description here

3 个答案:

答案 0 :(得分:0)

要在商店档案页面中显示简单商品的数量输入字段,您可以将以下代码添加到主题的functions.php文件

<?php 
/**
 * Code should be placed in your theme functions.php file.
 */
add_filter( 'woocommerce_loop_add_to_cart_link', 'quantity_inputs_for_woocommerce_loop_add_to_cart_link', 10, 2 );
function quantity_inputs_for_woocommerce_loop_add_to_cart_link( $html, $product ) {
    if ( $product && $product->is_type( 'simple' ) && $product->is_purchasable() && $product->is_in_stock() && ! $product->is_sold_individually() ) {
        $html = '<form action="' . esc_url( $product->add_to_cart_url() ) . '" class="cart" method="post" enctype="multipart/form-data">';
        $html .= woocommerce_quantity_input( array(), $product, false );
        $html .= '<button type="submit" class="button alt">' . esc_html( $product->add_to_cart_text() ) . '</button>';
        $html .= '</form>';
    }
    return $html;
}

希望这会有所帮助

答案 1 :(得分:0)

在Woocommerce中获取重量单位,您将使用:

$weight_unit = get_option('woocommerce_weight_unit');
echo 'Weight unit: ' . $weight_unit; // testing output;

在Woocommerce中获取维度单元,您将使用:

$dimension_unit = get_option('woocommerce_dimension_unit');
echo 'Dimension unit: ' . $dimension_unit; // testing output;

经过测试和工作。

答案 2 :(得分:0)

这是一个自定义字段 get_post_meta( $product->get_id(), '_unit', true) , 你可以得到单位价值