chrilisa Posted May 10, 2010 Share Posted May 10, 2010 one catagory more than 300 products.the batton didn't work Link to comment Share on other sites More sharing options...
rocky Posted May 10, 2010 Share Posted May 10, 2010 Topic movedThis is a known issue in Prestashop v1.2.5. There is a fix for it here. Link to comment Share on other sites More sharing options...
chrilisa Posted May 10, 2010 Author Share Posted May 10, 2010 solve :admin/tabs/admincatalog.phpfix: elseif (!isset($_GET['editImage'])) { $id_category = intval(Tools::getValue('id_category')); if (!$id_category) $id_category = 1; echo ''.$this->l('Current category').' : '.getPath($currentIndex, $id_category).''; echo ''.$this->l('Categories').''; $this->adminCategories->display($this->token); echo ' '; echo ''.$this->l('Products in this category').''; $this->adminProducts->display($this->token); } } to : elseif (!isset($_GET['editImage'])) { $id_category = intval(Tools::getValue('id_category')); if (!$id_category) $id_category = 1; $currentIndex .= '&id;_category='.$id_category.'&token;='.$this->token; echo ''.$this->l('Current category').' : '.getPath($currentIndex, $id_category).''; echo ''.$this->l('Categories').''; $this->adminCategories->display($this->token); echo ' '; echo ''.$this->l('Products in this category').''; $this->adminProducts->display($this->token); } } Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now