我试图进一步定制我的重力表“地址”标签。此时,他们读到了“街道地址”、“城市”和“邮政编码”。
一、 例如,要将“邮政编码”更改为“邮政编码”。有人知道你是否可以使用模板来覆盖主题中的这些值,而不会弄乱核心GF文件吗?
常见的php似乎是存储这些值的地方:
public static function get_address_types($form_id){
$addressTypes = array(
"international" => array("label" => __("International", "gravityforms"),"zip_label" => apply_filters("gform_address_zip_{$form_id}",apply_filters("gform_address_zip", __("ZIP / Postal Code", "gravityforms"), $form_id), $form_id),"state_label" => apply_filters("gform_address_state_{$form_id}",apply_filters("gform_address_state",__("State / Province / Region", "gravityforms"), $form_id), $form_id)),
);
return apply_filters("gform_address_types_{$form_id}", apply_filters("gform_address_types", $addressTypes, $form_id), $form_id);
}
任何帮助都将不胜感激。提前谢谢。