留言
留言
介紹一個萬年好用的開發者工具,用localhost也沒問題的好東東!看評論很多人都說他壞了,原本我使用經驗是時好時壞,認真研究一下總算發現問題在設計上(汗),這篇直接寫來做善事造福各位!
介紹一個萬年好用的開發者工具,用localhost也沒問題的好東東!看評論很多人都說他壞了,原本我使用經驗是時好時壞,認真研究一下總算發現問題在設計上(汗),這篇直接寫來做善事造福各位!
add_filter( 'woocommerce_billing_fields' , 'custom_override_billing_fields' );
function custom_override_billing_fields( $fields ) {
unset($fields['billing_country']); /* Hide Country field */
unset($fields['billing_company']); /* Hide Company field */
return $fields; }