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.
Latest News: (loading..)
Can not see Product Attributes "Page 2"
Started by greensled, Oct 16 2007, 02:45
4 replies to this topic
#1
Posted 16 October 2007, 02:45
#3
Posted 16 October 2007, 13:14
Perfect, thanks
#4
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.
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
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');
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');















