1 |
85ad3d82
|
Assos Assos
|
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 |
|
|
<?php if ($attachment_before): ?>
|
6 |
|
|
<div class="attachment-before">
|
7 |
|
|
<?php print $attachment_before; ?>
|
8 |
|
|
</div>
|
9 |
|
|
<?php endif; ?>
|
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 |
|
|
<?php if ($pager): ?>
|
16 |
|
|
<?php print $pager; ?>
|
17 |
|
|
<?php endif; ?>
|
18 |
|
|
</pre> |