Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Product Attributes Paging


tsvenkat

Recommended Posts

  • 5 months later...
The PRODUCTS ATRRIBUTES page has 11 pages - are you talking about admin section?

 

 

i am having the same problem, yes in the admin sectionwhen you click on the next page for Product Options , Option Values , Products Attributes it still only refreshes to page 1, makes editing product attributes impossible through the admin section, only way i cando it is by direct access to the database

 

does anyone know what would be causing this

 

Rhys

Link to comment
Share on other sites

  • 2 weeks later...

Open your catalog/admin/products_attributes.php and search for this line:

 $action = (isset($HTTP_GET_VARS['action']) ? $HTTP_GET_VARS['action'] : '');

 

Immediately below it, add the following:

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

 

That should fix your issue.

 

Regards,

 

ValueDock

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...