This is kind of a carryover from a D6 issue - #920288: pager: change slide on mouseover, go to node on click. I see that was resolved with the use of a pager_url variable. Is that variable missing from the D7 version? I can't seem to find it anywhere in the .tpl files. It shouldn't be a big deal to re-code on my own, but it seems like functionality that we would want in every version.

Comments

brycesenz’s picture

For reference, the code change in my pager .tpl was from this:

<div class="<?php print $settings['pager'] ?>-item-inner">  
  <a href="#" title="navigate to topic" class="pager-link"><?php print $pager_item['pager_image']; ?><?php print $pager_item['pager_text']; ?></a>
</div>

to this:

<div class="<?php print $settings['pager'] ?>-item-inner">  
  <a href="<?php print $pager_item['pager_url'] ?>" title="navigate to topic" class="pager-link"><?php print $pager_item['pager_image']; ?><?php print $pager_item['pager_text']; ?></a>
</div>

And then I manually added a 'pager_url' variable to my mappings settings in the View itself. I feel like this functionality is fairly common though, enough so that it might be worth adding in as a standard variable.

ppblaauw’s picture

Assigned: Unassigned » ppblaauw
Category: bug » task
Status: Active » Needs work

Thanks for posting.
Will implement in the drupal 7 versions