如何使用内容配置文件中提供的日期字段对 drupal VIEW 进行排序和过滤
对于我正在为体育俱乐部制作的网站,我想通过视图创建一个块,显示该网站上注册的所有会员即将到来的生日。我知道您可以对节点执行此操作,但不知何故我无法通过视图访问“个人资料:生日”字段。如果我使用节点创建视图,则不会,如果我使用用户创建视图,则不会。
我安装了视图、CCK、内容配置文件和日期。我在 php 5.1.6 上使用 drupal 6(我无法让管理员更新服务器)。但我无法让所有这些一起工作......有任何线索吗?
For a site I'm making for a sports club I want to create a block through views that shows the upcoming birthdays off all members registered on the site. I am aware that you can do this for nodes, but somehow I can't access the Profile: Birthday field through views. Not if I make a views using nodes, neither if I make a view using users.
I have Views, CCK, Content Profile and Date installed. I work with drupal 6 on a php 5.1.6(I can't get the administrators to update the server). But I can't get it all to work together... Any leads for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于日期配置文件字段在数据库(drupal 6)中序列化,因此无法排序。
http://drupal.org/node/475150
但是,您可以添加一个配置文件字段,而不是使用配置文件字段将日期抄送字段添加到您的个人资料内容类型中,该类型将是可排序的。
Since date profile field is serialized in database (drupal 6), it is not possible to sort.
http://drupal.org/node/475150
However, instead using a profile field, you can add a date cck field to your profile content type wich will be sortable.
您是否在视图中添加了“内容配置文件”关系?如果我没记错的话,这种关系将允许您访问您正在寻找的内容配置文件字段。
Did you added the "content profile" relationship in views ? If I remember well, this relationship will let you access to the content profile fields you're looking for.