drupal_set_message() 在 Drupal 7 上的 node.tpl.php 模板中不起作用
我的问题是 在node.tpl.php 在node.tpl.php中,我也做了 查看主题模板是否设置正确。答案是肯定的。 我还在我的 [theme].info 文件中设置了 page_top …
无法检索 page-taxonomy.tpl.php 中的 subterm 图像
我希望我的分类页面以特定的方式设计。为此,我已经在 template.php 中完成了必要的操作。现在我已经准备好 page-taxonomy.tpl.php 并开始工作。我正…
$变量对比。 $变量
drupal 7之间有什么区别 function mythemes_preprocess_node(&$variables) { ... } drupal 7和 function mythemes_preprocess_node(&$vars) { .…
预处理对比drupal模板中的流程函数
之间有什么区别 function mythemes_preprocess_html(&$variables) { ... } 和 function mythemes_process_html(&$variables) { ... } drupal 7 …
Drupal 7 主题:区域错误
这是在我的 Drupal 主题的 theme.info 文件中: regions[conf_modules] = Configurator: modules 我正在为不同的节点类型使用多个模板。在其中之一中…
将默认图像路径替换为自定义图像路径
我真正想做的就是用我的路径替换谷歌的路径。 //来自模块的代码 $today = &$handler->current_conditions $condition = (string) $today->cond…
Drupal 7 中的程序化视图
我正在尝试创建两个视图。 View-1 是节点列表。 View-2 是与每个节点关联的图像库。 我基本上想将节点标题从 View-1 传递到编程 View-2,以便 View-1 …
Drupal - 代码可以在 page.tpl.php 中运行,但不能在块中运行
以下代码在我的 page.tpl.php 中工作正常,但我无法让它在块中工作: <?php if (function_exists('twitter_pull_render')) { print twitter_pull_re…
在模板覆盖中打印基本路径
我正在使用 template.php 进行模板覆盖,并且需要打印站点基础的路径。 目前我有这个: $output = '<div id="my-basket-text"><a href="/cart"&…
寻找更好的 Drupal 7 主题指南
检查了 Drupal.org 上的文档后,我正在寻找有关 drupal 7 主题的简明指南,如“Pro Drupal Development”中包含的 5 和 6 主题?…
Drupal - 页面 PHP 打印图像正常,除非在管理/某些用户页面上
这是我在 page.tpl.php 中使用的代码: <div id="beforefooter"> <?php print l('<img src="imagesmy/logo.jpg" />', '<front>', array…
Drupal - 将 li 中的自定义 html 添加到菜单 ul?
有没有办法编写一些 html(就像您可能在块中一样),并使该 html 显示为菜单项? 我的情况是,我想要一些不是链接的文本来表示“关注我们:”,然后我…
Drupal 7:在 node.tpl.php 中显示数组变量及其链接
我正在使用 Drupal 7 构建一个单用户博客。我使用文章内容类型作为博客条目。我需要自定义节点的外观。我还在文章引用类别中添加了一个分类字段。我需…
Drupal 7:使用 html.tpl.php 中的 CCK 字段作为每个条目的自定义页面标题
我需要为每个页面提供自定义元标题。我找到了一个模块 http://drupal.org/project/page_title 但我无法为条目提供特定标题与此。 我为我的 CCK 创建了…
如何将视图块分配给 CCK 条目的动态分类术语页面
http://localhost/rkk/work-type/non-profit 我创建了一个工作类型下的词汇和术语。我创建了一些帖子... 然后我创建了一个视图块来列出我的条目,并分…