danny (OP) already answered the question himself.
Quote:
Ok, I found a solution here , but I will also post it here for better code extraction: Create a new module and rewrite the wish list block located in: ** code / core / Mage / Wishlist / Block / Customer / Wishlist.php ** and add the following to your Wishlist.php
class Company_Wishlist_Block_Customer_Wishlist extends Mage_Wishlist_Block_Customer_Wishlist
{
protected function _prepareLayout()
{
parent::_prepareLayout();
$pager = $this->getLayout()
->createBlock('page/html_pager', 'wishlist.customer.pager')
->setCollection($this->getWishlist());
$this->setChild('pager', $pager);
$this->getWishlist()->load();
return $this;
}
public function getPagerHtml()
{
return $this->getChildHtml('pager');
}
}
<?php echo $this->getPagerHtml(); ?> / view.phtml, : /// /_theme/template/wishlist/view.phtml. .
. , . , , . " " ( ).