Jump to content


Corporate Sponsors


Latest News: (loading..)

- - - - -

Products Attributes Paging


2 replies to this topic

#1 pavelushakov

  • Community Member
  • 2 posts
  • Real Name:pavelushakov

Posted 08 October 2007, 21:01

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.

#2 jcurtis3

  • Community Member
  • 43 posts
  • Real Name:Jim Curtis

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');

#3 janetgot

  • Community Member
  • 149 posts
  • Real Name:Janet
  • Gender:Female
  • Location:Boston, MA

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