如何在位置类型视图上使用 cck 字段?
我有一个 LOCATION 类型的视图。我的问题是,当我尝试添加 cck 字段时,类型下拉列表中不提供“内容”类型。
我也尝试添加关系,但内容也不存在。
有什么想法吗?
I have a view of type LOCATION. My problem is that when I try to add a cck field the type "content" is not available on the type dropdown.
I also tried to add a relationship but the content is not there also.
Any ideas ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下是我为解决问题所做的操作
1 - 我添加了 视图自定义字段 模块
2 - 添加了一个新的字段(PHP 自定义字段),我创建了一个 SQL 命令来搜索数据库上所需的内容。
我希望它有帮助。
Here is what I did to solve the problem
1 - I added Views Custom Field Module
2 - Added a new field (PHP Custom Field) and I created a SQL command to search the content that I needed on the database.
I hope it helps.
如果您的视图类型是位置,您将无法从内容类型获取自定义字段。
根据您正在做的事情,您可能想要做的是:
创建一些内容,不要添加在映射方面有很多问题的位置 cck 字段,而不是我们的节点位置。
将自定义字段添加到您的内容类型“my_location”
- 现在,内容类型“ym_location”充当带有 cck 字段的单个位置(如果您需要连接)将此内容添加到网站上的其他内容,您可以使用 [Node Referrer][2]
希望这有帮助。我在一个项目中使用了这种逻辑,我们需要每个位置的更多信息,但我们仍然想绘制位置地图。
If your view type is location you are not going to be able to get the custom fields from your content type.
depending on what you are doing what you may want to do is:
create some content, DONT add location cck field that have lots of issues with mapping instead us the node location.
add custom field to your content type 'my_location'
-- now the content type 'ym_location' acts as a single location with cck fields, if you need to connect this to other content on the site you can use the [Node Referrer][2]
Hope this helps. I used this logic on a project where we needed more information on each location but we still wanted to map the locations.