Jump to content

Recommended Posts

Hello to Prestashop developers,

 

I have found a bug / error while listing the features value.

 

Description:

 

Error Location: Back office

 

I have 5 features in my back office: Like Grams, Litres, Pcs, Boxes, etc..

 

In these 5 features i have 200+ values...

 

When we are at Feature List page >>> Click "+" sign in actions in front of each feature (to expand the features values) this list only shows 193 values which we can edit and delete here...

 

If we have 193+ item in our features value list it doesn't displays.

 

If we create new feature value under any feature... its created but not displayed on this expandable list of feature.

 

Second, Feature values are successfully created (when we add new feature value) and saved in phpMyadmin under "ps_feature_value_lang" table.

and also shown when we add new product and select feature for that product.

 

But not shown in feature page under feature value expand list.

 

So, developers must fix this issue ASAP...

Link to comment
Share on other sites

  On 5/10/2013 at 4:21 PM, Benjamin Utterback said:

Hi surin, have you made a forge report about this? This is will help us manage and investigate these type of issues. you can make on at forge.prestashop.com

 

i got the solution but...i don't know in which file i have to make modifications.

 

http://forge.prestashop.com/browse/PSCFV-5847?page=com.atlassian.jira.plugin.system.issuetabpanels%3Aall-tabpanel#issue-tabs

 

 

Controller use default method getList with pagination of 50 items. Argument $limit should be set to FALSE to disable limit and resolve this bug.

Tested on 1.5.4.0

Class: AdminFeaturesControllerCore

Method: public function getList($id_lang, $order_by = null, $order_way = null, $start = 0, $limit = FALSE, $id_lang_shop = false)

 

can anybody help me to resolve this issue..

Link to comment
Share on other sites

  On 5/13/2013 at 3:49 PM, surin said:

i got the solution but...i don't know in which file i have to make modifications.

 

http://forge.prestas...anel#issue-tabs

 

 

Controller use default method getList with pagination of 50 items. Argument $limit should be set to FALSE to disable limit and resolve this bug.

Tested on 1.5.4.0

Class: AdminFeaturesControllerCore

Method: public function getList($id_lang, $order_by = null, $order_way = null, $start = 0, $limit = FALSE, $id_lang_shop = false)

 

can anybody help me to resolve this issue..

 

 

Here is the location:

 

just edit:

Location of file:

/controllers/admin/AdminFeaturesController.php

 

replace:

public function getList($id_lang, $order_by = null, $order_way = null, $start = 0, $limit = null, $id_lang_shop = false)

 

with

 

public function getList($id_lang, $order_by = null, $order_way = null, $start = 0, $limit = false, $id_lang_shop = false)

 

all done...

 

Detailed location finder: Surin

Link to comment
Share on other sites

×
×
  • Create New...