Hello All...

I would like to implement the pager found here -> http://drupal.org/node/119052 on the image/tid/* gallery pages instead of just the image nodes.

I cant seem to get this happening. Any insight?

I am using the custom pager in order to get the desired results on individual images but after much cannot find a way to work on the taxonomy pages (image/tid).

For clarification I am using the image gallery module that comes bundled w/ "Image."

Thx in advance.

Comments

catch’s picture

carlomontagnino’s picture

I actually haven't, I'll take a look now. Thanks a bunch.!
-carlo

carlomontagnino’s picture

I am actually using another custom pager (found here: http://drupal.org/node/45050 ) which goes into the template.php.

There is a conflict between the two custom pager solutions.

The one I am using (described above) does exactly what I need so I am hesitant to fully switch everything over to the module.

The code that calls the pager is:

if ($page != 0 && $terms) { print custom_pager($node->tid); }

My Image nodes are being paged properly. the url is "node/53" for example. My problem Is implementing the same pager to the gallery pages which live at "image/tid/3" which turns into "image/tid/3&page=1" when the next link is clicked.

I have a different tpl file for both the image nodes and the image galleries. (found here: http://drupal.org/node/41257)

-carlo