Hi,
I don't understand how to link the pager image and text to their node. I just have this :
<a class="pager-link" title="navigate to topic" href="#">
If I make those fields clickable in my view, my display is horrible.
Any idea ?

Comments

abrebion’s picture

I eventually find the solution:

  1. I added in my view a field with the path of my content (content:path with absolute url).
  2. I added a target in the field mappings area that I named "pager_link". I mapped it with my new view field.
  3. I finally edit the pager template to this : <a href="<?php print $pager_item['pager_link']; ?>" class="pager-link"><?php print $pager_item['pager_image']; ?><span class="<?php print $settings['pager'] ?>-item-text"><?php print $pager_item['pager_text']; ?></span></a>
abrebion’s picture

Issue summary: View changes

change