Problem mit Custom_Pagers Module
am 17.05.2010 - 15:29 Uhr in
Ich habe den Customs_Pagers installiert wie es in der Anleitung steht.
Desweiteren habe ich folgenden Code in mein eigenes Node (node-test.tpl.php) kopiert
<?php
print $node->content['custom_pager_top']['#children'];
?>
Ebenfalls habe ich folgende Anpassungen im template.php gemacht. (sites/all/themes/meintheme/)
function phptemplate_preprocess_custom_pager(&$vars) {
// if we're at the end, the nav_array item for this (eg first) is NULL;
// no need to compare it to current index.
$vars['first'] = empty($vars['nav_array']['first']) ? '' : l('first', 'node/' . $vars['nav_array']['first']);
$vars['last'] = empty($vars['nav_array']['last']) ? '' : l('last', 'node/' . $vars['nav_array']['last']);
}
Dazu noch ein Custom-Pager.tpl.php wie auch in der Anleitung beschrieben:
<?php
// $Id: custom-pager.tpl.php,v 1.1.2.1 2008/12/24 00:58:21 eaton Exp $
/**
* @file
* custom-pager.tpl.php
*
* Theme implementation to display a custom pager.
*
* Default variables:
* - $previous: A formatted <A> link to the previous item.
* - $next: A formatted <A> link to the next item.
* - $key: Formatted text describing the item's position in the list.
* - $position: A textual flag indicating how the pager is being displayed.
* Possible values include: 'top', 'bottom', and 'block'.
*
* Other variables:
* - $nav_array: An array containing the raw node IDs and position data of the
* current item in the list.
* - $node: The current node object.
* - $pager: The pager object itself.
*
* @see custom_pagers_preprocess_custom_pager()
*/
?>
<ul class="custom-pager custom-pager-<?php print $position; ?>">
<li class="previous"><?php print $previous; ?></li>
<li class="next"><?php print $next; ?></li>
</ul>
Dieser funktioniert dann auch auf der lokalen Seite und wird dann auch richtig angezeigt.
Sobald ich aber das Modul sowie die aktualisierte Node und Template etc. ins Netz stelle, seh ich keinen Pager mehr resp. nur noch der Leerraum...
Weiss evt. jemand woran das liegen könnte?
Ich verstehe momentan hier nur noch Bahnhof...
Lokal -> Ja
Web -> Nein
hmmm...
Vielen Dank für Feedbacks.
Greetz,
Fabi
- Anmelden oder Registrieren um Kommentare zu schreiben
kennt niemand dieses
am 21.05.2010 - 16:10 Uhr
kennt niemand dieses Problem?
Kann es, da es auf der lokalen Seite funktioniert, irgendwie nicht nachvollziehen wo der Bock ist...
Besten Dank für Eure Hilfe,
Fabi