Hello,
We have about 500 Products Attributes with 55 pages. When I click on next page the results does not change and defaults to page 1. Please let me know how I can fix this.
Latest News: (loading..)
Products Attributes Paging
Started by pavelushakov, Oct 08 2007, 21:01
2 replies to this topic
#1
Posted 08 October 2007, 21:01
#2
Posted 27 November 2007, 04:46
in your catalog\admin\products_attributes.php
after this code
CODE
$action = (isset($HTTP_GET_VARS['action']) ? $HTTP_GET_VARS['action'] : '');
Add:
$option_page = (isset($HTTP_GET_VARS['option_page']) ? $HTTP_GET_VARS['option_page'] : '1');
$value_page = (isset($HTTP_GET_VARS['value_page']) ? $HTTP_GET_VARS['value_page'] : '1');
$attribute_page = (isset($HTTP_GET_VARS['attribute_page']) ? $HTTP_GET_VARS['attribute_page'] : '1');
after this code
CODE
$action = (isset($HTTP_GET_VARS['action']) ? $HTTP_GET_VARS['action'] : '');
Add:
$option_page = (isset($HTTP_GET_VARS['option_page']) ? $HTTP_GET_VARS['option_page'] : '1');
$value_page = (isset($HTTP_GET_VARS['value_page']) ? $HTTP_GET_VARS['value_page'] : '1');
$attribute_page = (isset($HTTP_GET_VARS['attribute_page']) ? $HTTP_GET_VARS['attribute_page'] : '1');
#3
Posted 10 December 2007, 18:33
Thank you Jim! I was also having an issue with this and your fix worked like charm. Just thought you'd like to know your help is appreciated!
Janet
Janet














