如何向WooCommerce添加默认结算标题?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何向WooCommerce添加默认结算标题?相关的知识,希望对你有一定的参考价值。
我正在寻找一个钩子,为billing_title
选择默认的账单标题选择到MyAccount页面的WooCommerce checkout
和change-address
设置。
它应该像Please select salutation
,应该是必填字段。该字段来自WooCommerce Germanized插件,是德国的必填字段。因此,没有关于此的文件(遗憾地)。
答案
这是我的解决方案:
/**
* Add billing title default selection value
*/
add_filter( 'woocommerce_gzd_title_options', 'add_new_billing_title', 10, 1 );
function add_new_billing_title( $titles ) {
array_unshift( $titles, 'Bitte auswählen' );
return $titles;
}
我正在使用array_unshift
添加默认的请选择德语中的值作为select中的第一个元素。
以上是关于如何向WooCommerce添加默认结算标题?的主要内容,如果未能解决你的问题,请参考以下文章
当 Woocommerce 购物车为空时,向项目添加 CSS 类