Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Can not see Product Attributes "Page 2"


greensled

Recommended Posts

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

  • 1 month later...

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...