Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Product Attributes Paging


tsvenkat

Recommended Posts

Posted

We have osC 2.2 installed.

 

There is one issue

 

The PRODUCTS ATRRIBUTES page has 11 pages but clicking on any page shows only PAGE 1

 

how to sort out ?

  • 5 months later...
Posted
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

  • 2 weeks later...
Posted

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

Archived

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

×
×
  • Create New...