lindsayanng Posted September 29, 2008 Posted September 29, 2008 I asked this in the contribution support, but got not answer.. I figured i might have a little more luck here, as people MIGHT use both and can just answer me a quick YES or NO. Does the AJAX attribute manager work with Super Downloads Store? I have been having NOTHING but issues with the super download store, and i need to have ALL attributes, files, file groups and products shown on th SAME page because the split page code in teh super download store contribution does no work at all in the new version of oscommerce.. ANY help and answers are again, greatly appreciated A great place for newbies to start Road Map to oscommerce File Structure DO NOT PM ME FOR HELP. My time is valuable, unless i ask you to PM me, please dont. You will get better help if you post publicly. I am not as good at this as you think anyways! HOWEVER, you can visit my blog (go to my profile to see it) and post a question there, i will find time to get back and answer you Proud Memeber of the CODE BREAKERS CLUB!!
lindsayanng Posted September 30, 2008 Author Posted September 30, 2008 well, i installed it, and it was just that.. OK.. not fabulous, since i can not use file GROUPS in it.. so i still need to GROUP the files. A great place for newbies to start Road Map to oscommerce File Structure DO NOT PM ME FOR HELP. My time is valuable, unless i ask you to PM me, please dont. You will get better help if you post publicly. I am not as good at this as you think anyways! HOWEVER, you can visit my blog (go to my profile to see it) and post a question there, i will find time to get back and answer you Proud Memeber of the CODE BREAKERS CLUB!!
rick2203 Posted October 9, 2008 Posted October 9, 2008 .... i need to have ALL attributes, files, file groups and products shown on th SAME page because the split page code in teh super download store contribution does no work at all in the new version of oscommerce. I had the same problem with the split page links no working. I fixed it by making the following changes to the group_download.php file: (1) On about line 110: // if (!isset($file_group_page)) $file_group_page = 1; //Original code from Super Download, but the "next page" link does not work. if ( isset($HTTP_GET_VARS['file_group_page']) && is_numeric($HTTP_GET_VARS['file_group_page']) ) { $file_group_page = $HTTP_GET_VARS['file_group_page']; } else { $file_group_page = 1; } (2) On about line 634 //if (!isset($group_file_page)) $group_file_page = 1; // Original code from Super Download, but the "next page" links do not work. if ( isset($HTTP_GET_VARS['group_file_page']) && is_numeric($HTTP_GET_VARS['group_file_page']) ) { $group_file_page = $HTTP_GET_VARS['group_file_page']; } else { $group_file_page = 1; } Similarly, in the products_attributes.php file I made these three changes: (3) On about line 438: //if (!isset($option_page)) { /// Original osC code -- but the "next page" links don't work. //$option_page = 1; //} if (isset($HTTP_GET_VARS['option_page']) && is_numeric($HTTP_GET_VARS['option_page']) ) { $option_page = $HTTP_GET_VARS['option_page']; } else { $option_page = 1; } (4) On about line 649: //if (!isset($value_page)) { //Original osC code but the "next page" link does not work. // $value_page = 1; //} if ( isset($HTTP_GET_VARS['value_page']) && is_numeric($HTTP_GET_VARS['value_page']) ) { $value_page = $HTTP_GET_VARS['value_page']; } else { $value_page = 1; } (5) On about line 825: //if (!isset($attribute_page)) { //Original osC code but the "next page" link does not work. // $attribute_page = 1; //} if ( isset($HTTP_GET_VARS['attribut_page']) && is_numeric($HTTP_GET_VARS['attribut_page']) ) { $attribute_page = $HTTP_GET_VARS['attribute_page']; } else { $attribute_page = 1; } This has, for me, fixed the split page links on all five tables listed on the products attributes page. I hope it is of some help to you. Cheers.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.