答案 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) ,
你可以得到单位价值