greensled Posted October 16, 2007 Share Posted October 16, 2007 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. Link to comment Share on other sites More sharing options...
Jan Zonjee Posted October 16, 2007 Share Posted October 16, 2007 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. Link to comment Share on other sites More sharing options...
greensled Posted October 16, 2007 Author Share Posted October 16, 2007 Perfect, thanks Link to comment Share on other sites More sharing options...
limitedwave Posted October 23, 2007 Share Posted October 23, 2007 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. Link to comment Share on other sites More sharing options...
jcurtis3 Posted November 27, 2007 Share Posted November 27, 2007 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'); Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.