Projet

Général

Profil

Paste
Télécharger (521 octets) Statistiques
| Branche: | Révision:

root / htmltest / sites / all / modules / views / help / top-pager.html @ 4543c6c7

1
Copy the views-view.tpl.php from the /views/theme directory to themes/yourtheme/theme directory. Find the following code...
2

    
3

    
4
<pre>
5
  &lt;?php if ($attachment_before): ?&gt;
6
    &lt;div class="attachment-before"&gt;
7
      &lt;?php print $attachment_before; ?&gt;
8
    &lt;/div&gt;
9
  &lt;?php endif; ?&gt;
10
</pre>
11

    
12
Insert the following code after it (this is copied directly from the same code at the bottom of the tpl):
13

    
14
<pre>
15
  &lt;?php if ($pager): ?&gt;
16
    &lt;?php print $pager; ?&gt;
17
  &lt;?php endif; ?&gt;
18
  </pre>