Mercurial > hg > rr-repo
annotate sites/all/modules/views/help/top-pager.html @ 2:b74b41bb73f0
-- Google analytics module
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Thu, 22 Aug 2013 17:22:54 +0100 |
parents | ff03f76ab3fe |
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 <?php if ($attachment_before): ?> |
danielebarchiesi@0 | 6 <div class="attachment-before"> |
danielebarchiesi@0 | 7 <?php print $attachment_before; ?> |
danielebarchiesi@0 | 8 </div> |
danielebarchiesi@0 | 9 <?php endif; ?> |
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 <?php if ($pager): ?> |
danielebarchiesi@0 | 16 <?php print $pager; ?> |
danielebarchiesi@0 | 17 <?php endif; ?> |
danielebarchiesi@0 | 18 </pre> |