Magento add pager toolbar to wishlist?

Danny (OP) already self-answered the question.

Danny (OP) already self-answered the question. Quote: Ok, i've found the solution here but i'll post it here too for a better code highlighting: Create a new modul and overwrite the wishlist 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'); } } now add getPagerHtml();? > to the start and/or end of the view.

Phtml located in: app/design/frontend/default/your_theme/template/wishlist/view.phtml. That should do the trick. Note: It's absolutely OK to self-answer your own question.

Please just post it as an real answer, but not in a question or comment. Posting as real answer helps to keep the "Unanswered" list more clear (avoids making other people wasting their time).

– danny Oct 31 at 15:22 @danny:you are right denny it works for me – gowri Nov 8 at 10:27.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions