-1
在我woocommerce網站,我用這個代碼從頁和後顯示產品與像[product_page id="99"]
一個短代碼刪除標題...刪除「相關文章」當WooCommerce短代碼發佈在文章/頁面
代碼如下:
function remove_some_product_titles(){
if(!is_product()){
remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_title', 5);
}
}
add_action('woocommerce_single_product_summary', 'remove_some_product_titles', 4);
如何在將WooCommerce簡碼發佈到帖子或頁面時禁用「相關帖子」?
我用WooCommerce的簡碼爲:[product_page id="99"]
感謝
這個問題不適合http://stackoverflow.com/help/mcve。請編輯它。 – Chris311