更改并设置 drupal 7 中字段的 id 属性
任何人都可以帮助我如何更改 drupal 7 中的字段属性。假设我创建了一个字段名称 hello_test,标签为 hello。现在我需要更改标签并为主题中的 template.php 文件中的字段设置属性.谁能帮助我
Can anyone help me how to alter a field attribute in drupal 7. Let say i have created a field name hello_test with label as hello.Now I need to alter the label and set a attribute for the filed in template.php file in my theme.Can anyone help me
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
几天前我遇到了同样的问题。当我设置文本字段属性 onblur 和 onfocus 时,它不起作用。准确地说,它正在工作,但我看不到它,因为它被 profile2 模块的表单更改覆盖了。
我认为您的表单 alter api 在 profile2 模块表单 alter api 之前加载。所以会被覆盖。我通过在另一个命名空间中创建自定义表单更改来解决我的问题。
I faced the same problem a few days ago. When I set a textfield attribute onblur and onfocus, it didn't work. To be precise, it was working but I couldn't see it because it was overwritten by a form alter of the profile2 modules.
I think your form alter api loads before a profile2 module form alter api. So gets overwritten. I solved my problem by creating a custom form alter in another namespace.