0
我正在嘗試安排產品概要的順序,以便價格在經過簡短說明後發出股票通知之後發出。我知道的重點在內容單product.phpwoocommerce股票通知優先
/**
* woocommerce_single_product_summary hook.
*
* @hooked woocommerce_template_single_title - 5
* @hooked woocommerce_template_single_rating - 10
* @hooked woocommerce_template_single_price - 10
* @hooked woocommerce_template_single_excerpt - 20
* @hooked woocommerce_template_single_add_to_cart - 30
* @hooked woocommerce_template_single_meta - 40
* @hooked woocommerce_template_single_sharing - 50
* @hooked WC_Structured_Data::generate_product_data() - 60
*/
do_action('woocommerce_single_product_summary');
限定。然而,我沒有看到股票在大呼過癮。該文件或代碼,我不能找到它。如果我知道股票模板的鉤子和優先級,我可以解決我的問題。我試過
remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_stock', 30);
沒有結果。誰能幫忙?謝謝。