annotate sites/all/modules/views/help/top-pager.html @ 0:ff03f76ab3fe

initial version
author danieleb <danielebarchiesi@me.com>
date Wed, 21 Aug 2013 18:51:11 +0100
parents
children
rev   line source
danielebarchiesi@0 1 Copy the views-view.tpl.php from the /views/theme directory to themes/yourtheme/theme directory. Find the following code...
danielebarchiesi@0 2
danielebarchiesi@0 3
danielebarchiesi@0 4 <pre>
danielebarchiesi@0 5 &lt;?php if ($attachment_before): ?&gt;
danielebarchiesi@0 6 &lt;div class="attachment-before"&gt;
danielebarchiesi@0 7 &lt;?php print $attachment_before; ?&gt;
danielebarchiesi@0 8 &lt;/div&gt;
danielebarchiesi@0 9 &lt;?php endif; ?&gt;
danielebarchiesi@0 10 </pre>
danielebarchiesi@0 11
danielebarchiesi@0 12 Insert the following code after it (this is copied directly from the same code at the bottom of the tpl):
danielebarchiesi@0 13
danielebarchiesi@0 14 <pre>
danielebarchiesi@0 15 &lt;?php if ($pager): ?&gt;
danielebarchiesi@0 16 &lt;?php print $pager; ?&gt;
danielebarchiesi@0 17 &lt;?php endif; ?&gt;
danielebarchiesi@0 18 </pre>