我使用设置数量最小值,最大值和步骤在产品级Woocommerce回答代码实现最小值,最大值和步骤Woocommerce产品的数量。
然后,我尝试添加一个新的选择器与2个选项,并显示它之前添加到购物车按钮。所以,添加到代码:
woocommerce_wp_select( array(
'id' => 'tip_produs', // required
'label' => __( 'Unitate produs', 'woocommerce' ), // Text in Label
'class' => 'tip_produs',
'options' => array(
'set' => 'Vand la set',
'buc' => 'Vand la buc',
),
'desc_tip' => 'true',
'description' => 'Alege daca produsul se vinde la bucata sau la set.',
'value' => $tip_produs, // <== POPULATING
));
字符串
选择项出现,但我不知道如何保存值并正确显示。我尝试使用$('#tip_produs:selected').text();
,但该选项没有selected="selected"
属性.
的数据
要在I use this hook前端上显示它,请使用以下命令进行测试:
add_action( 'woocommerce_after_add_to_cart_quantity', 'bbloomer_echo_qty_front_add_cart' );
function bbloomer_echo_qty_front_add_cart() {
echo '<span class="qty-suff">text</span>';
}
型
1条答案
按热度按时间y4ekin9u1#
我已经更新了Woocommerce答案中产品级别的最小数量设置代码,最大数量和步骤,包括您的“数量单位”选择器 (显示选择字段,保存所选值并在单个产品页面中显示)
完整的revisited代码:
字符串
代码放在你的子主题的functions.php文件中(或插件中)。测试和工作。
的数据
的