如何在我的drupal主题中找到并移动内容

时间:2011-11-14 23:42:38

标签: drupal drupal-modules drupal-themes

我正在为使用drupal创建的客户端的网站进行设计更改。看起来像一个drupal 7网站。

我找到了主题文件。 page.tpl.php包含page-ajaz.tpl.php

该文件包含以下代码

    <div <?php print drupal_attributes($attr) ?>>

  <?php if ($_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest') { ?>
    <title <?php print drupal_attributes($attr) ?>><?php print $head_title ?></title>
  <?php } ?>

  <?php print $breadcrumb ?>

  <h1 class='page-title'>
    <?php print $title; ?>
  </h1>

  <?php if ($tabs) { ?>
    <div class="tabs"><?php print $tabs ?></div>
    <?php if ($tabs2) { ?>
      <div class="tabs second"><?php print $tabs2 ?></div>
    <?php } ?>
  <?php } ?>

  <div class="page-content">
    <?php if ($messages) { ?>
      <div class="messages"><?php print $messages ?></div>
    <?php } ?>
    <?php
      print $help;      
      print $content;
      print $feed_icons;
    ?>
  </div>

</div>

<?php 
if (in_array('page-ajax', $variables['template_files'])) {
  $settings_js = drupal_add_js();
  unset($settings_js['core']);
  unset($settings_js['module']);
  unset($settings_js['theme']);
  print drupal_get_js('header', $settings_js);
}
?>

客户端希望将位于$ content var中的表单放在H1页面标题上方。

看起来开发人员使用了一个名为views-exposed-form.tpl.php的东西。我的猜测是,这是他们使用的模块的模板,名为better_exposed_filters。

我无法弄清楚如何移动此模块生成的表单,使其显示在标题H1上方。

1 个答案:

答案 0 :(得分:1)

尝试在块管理页面中找到类似“views exposed filter”块的内容。 将此块从内容区域移动到另一个区域。检查表格是否改变了位置。 如果是,则将块移动到首选位置的区域(也许你必须定义这个区域)。