在BoonEx Dolphin中添加新组时,会出现一个包含多个输入字段的 HTML 表单。在这些字段中,有Country
, City
, Zip/Postal Code
- 我如何从表单中删除它们?
问问题
508 次
1 回答
-1
组/添加组/组的信息
这是您问题的答案。参考这个链接。
编辑文件“modules/boonex/events/classes/BxEventsFormAdd.php”
在这里你看到这个国家:
'Country' => array(
'type' => 'select',
'name' => 'Country',
'caption' => _t('_bx_events_caption_country'),
'values' => $aCountries,
'required' => true,
'checker' => array (
'func' => 'preg',
'params' => array('/^[a-zA-Z]{2}$/'),
'error' => _t ('_bx_events_err_country'),
),
'db' => array (
'pass' => 'Preg',
'params' => array('/([a-zA-Z]{2})/'),
),
),
删除行:
'required' => true,
城市和地点相同,或者您可以尝试从上面删除整个代码
对于文件上相同的组:
模块/boonex/groups/classes/BxGroupsFormAdd.php
以下是更多详细信息的链接:
http://www.boonex.com/forums/topic/Remove-Country-from-mandatory-field-in-Groups-and-Events.htm
于 2015-04-01T04:28:56.180 回答