For the QT5.x Can I display the views pager inside the tabs. I have try QT 6.x which is perfect for display block pager and views pager. just 5.x seems doesn't support this function ???? Can anyone explain a bit for me ?

Due to the panels still very unstable in druapl6.x, I have to keep my site in drupal5.x, So, the QT5.x still very useful and a key product for the site.

If QT5.x doesn't support the pager, Is possiable to get this function into 5.x from 6.x ?

Thank you.

Comments

pasqualle’s picture

in quicktabs.module line 519

$output .= views_build_view($viewbuild, $view, $args, false, $tab['limit']);

try to change to

$output .= views_build_view($viewbuild, $view, $args, $view->use_pager, $tab['limit']);

this will use the pager setting in the view.. but probably the pager may work only on the first tabpage, because as I know D5 views does not support ajax views, therefore the pager will make a full page reload.

params for views_build_view function: http://drupal.org/node/99721

note: the pager functionality is provided by the views module not by QT

pasqualle’s picture

Status: Active » Closed (won't fix)

Drupal 5 version of the Quick Tabs module is no longer supported. Closing.
If you have this same problem with later versions, feel free to reopen this issue.