Guest Posted December 27, 2007 Posted December 27, 2007 I cannot view more than the first 10 "Option Values" in the control panel. There are 12 options but whenever I click on the "2" to go to the second page the browser stays on the first page. The URL changes from www.xxxxx.com/admin/products_attributes.php?option_order_by=products_options_id&value_page=1 to www.xxxxx.com/admin/products_attributes.php?option_order_by=products_options_id&value_page=2 but the display stays on the first 10 options. This also happens for "Product Attributes." My cart is going to have a ton of options but I can't view or manage them. Any help is much appreciated. thanks in advance, Jawinn
♥geoffreywalton Posted December 27, 2007 Posted December 27, 2007 Have seen this suggested in your catalog\admin\products_attributes.php after this code CODE $action = (isset($HTTP_GET_VARS['action']) ? $HTTP_GET_VARS['action'] : ''); Add: CODE $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'); Hope that helps Need help installing add ons/contributions, cleaning a hacked site or a bespoke development, check my profile Virus Threat Scanner My Contributions Basic install answers. Click here for Contributions / Add Ons. UK your site. Site Move. Basic design info. For links mentioned in old answers that are no longer here follow this link Useful Threads. If this post was useful, click the Like This button over there ======>>>>>.
Guest Posted December 27, 2007 Posted December 27, 2007 Have seen this suggested in your catalog\admin\products_attributes.php after this code CODE $action = (isset($HTTP_GET_VARS['action']) ? $HTTP_GET_VARS['action'] : ''); Add: CODE $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'); Hope that helps Success! Many thanks for the quick fix.
Guest Posted January 8, 2008 Posted January 8, 2008 Many thanks geoffreywalton, you've been of a great help When a fix works, its like magic !! Thanks also to jwinn for his question
Recommended Posts
Archived
This topic is now archived and is closed to further replies.