我尝试使用Get the total stock of all variations from a variable product In Woocommerce,试图使这段代码起作用:
add_action( 'woocommerce_after_shop_loop_item_title', 'display_variable_product_stock_quantity', 20 );
function display_variable_product_stock_quantity(){
wc_get_variable_product_stock_quantity( 'echo_html' );
}
与此:
add_action( 'woocommerce_single_product_summary', 'display_variable_product_stock_quantity', 15 );
function display_variable_product_stock_quantity(){
wc_get_variable_product_stock_quantity( 'echo_html' );
}
或者有可能以默认的数量元素获取总库存吗?例如。股票将显示在下面突出显示的位置:
答案 0 :(得分:1)
只需使用以下内容,并以此方式更改钩子(用于商店的存档页面):
add_action( 'woocommerce_after_shop_loop_item', 'display_variable_product_stock_quantity', 20 );
function display_variable_product_stock_quantity(){
wc_get_variable_product_stock_quantity( 'echo_html' );
}
代码进入您的活动子主题(或活动主题)的function.php文件中。它应该按要求工作。