top-pager.html 521 B

123456789101112131415161718
  1. Copy the views-view.tpl.php from the /views/theme directory to themes/yourtheme/theme directory. Find the following code...
  2. <pre>
  3. &lt;?php if ($attachment_before): ?&gt;
  4. &lt;div class="attachment-before"&gt;
  5. &lt;?php print $attachment_before; ?&gt;
  6. &lt;/div&gt;
  7. &lt;?php endif; ?&gt;
  8. </pre>
  9. Insert the following code after it (this is copied directly from the same code at the bottom of the tpl):
  10. <pre>
  11. &lt;?php if ($pager): ?&gt;
  12. &lt;?php print $pager; ?&gt;
  13. &lt;?php endif; ?&gt;
  14. </pre>