Jump to content


Corporate Sponsors


Latest News: (loading..)

- - - - -

Can not see Product Attributes "Page 2"


  • You cannot reply to this topic
4 replies to this topic

#1 greensled

  • Community Member
  • 14 posts
  • Real Name:Tony

Posted 16 October 2007, 02:45

I am trying to add more product "Option Values" and when I click the link for page 2 it will not go. It will continually stay on page one. Help.

#2 Jan Zonjee

  • Team Member
  • 7,001 posts
  • Real Name:Jan Zonjee
  • Gender:Male
  • Location:the Netherlands

Posted 16 October 2007, 06:02

View Postgreensled, on Oct 16 2007, 04:45 AM, said:

I am trying to add more product "Option Values" and when I click the link for page 2 it will not go. It will continually stay on page one. Help.
This should help.

#3 greensled

  • Community Member
  • 14 posts
  • Real Name:Tony

Posted 16 October 2007, 13:14

Perfect, thanks

#4 limitedwave

  • Community Member
  • 4 posts
  • Real Name:Andy Harper

Posted 23 October 2007, 23:19

I downloaded and installed the latest version of this app yesterday and I have the same problem with the attributes > Option Values not paging. Click, page reloads, nadda.

I found this: $action = (isset($HTTP_GET_VARS['action']) ? $HTTP_GET_VARS['action'] : '');
in products_attributes.php and added the above code, making this:

$action = (isset($HTTP_GET_VARS['action']) ? $HTTP_GET_VARS['action'] : '');
$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');

Still I have the same results. Is this due to my newer version? Ie all of the documentation pics look nothing like what I see in the admin...

thanks.

#5 jcurtis3

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

Posted 27 November 2007, 04:45

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