Search Results

Search found 2 results on 1 pages for 'user390426'.

Page 1/1 | 1 

  • Display a menu with categories, sub-categories and products - Magento

    - by user390426
    Hi I have been looking to implement a menu system like the following I have 1 category, Cars, with 2 sub-categories, New and Used I’d like to display, on the drop down, the main category and then New, with all the products inside as a list and then Used, with all the products in a list. I have tried using the code in the link provided, but it seemed to include a rollover option, that expanded the menu and the products are not listed below the category. Thanks

    Read the article

  • Pagination - Symfoy

    - by user390426
    Hi I have the following code: public function executeList() { $c = new Criteria(); $c->setLimit(5); $this->latest = ItemPeer::doSelectLatest($c); } Now I'd like to be able to use pagination with this, using sfPropelPager. How could I use that with the code above, making sure It paginates results from the peer method? Thanks EDIT: Got it working: $pager = new sfPropelPager('Item', 10); $pager->setPage($request->getParameter('page', 1)); $pager->setPeerMethod('doSelectLatest'); $pager->init(); $this->pager = $pager; Thanks!

    Read the article

1