Medibot3D Posted April 23, 2010 Share Posted April 23, 2010 Hi Ive been having problems with the Quantity per attribute add on. Its working in admin but when I go to product pages I get a blank screen. there are two fragments on the add-on which I cant find on my admin/product_attribues.php page so I did a search for them on the file that came with the add-on. they're there but the code around them is compleatly different to mine. has anyone else had problems with this?? I have products in coloums and multi image add-ons. Any known compatability problems?? I've only been doing osc for two days now my brain is melting and driping out my ears :sweating: please help. these are the codes --Find-- <td align="right"><br><form name="option_order_by" action="<?php echo FILENAME_PRODUCTS_ATTRIBUTES; ?>"><select name="selected" onChange="go_option()"><option value="products_options_id"<?php if ($option_order_by == 'products_options_id') { echo ' SELECTED'; } ?>><?php echo TEXT_OPTION_ID; ?></option><option value="products_options_name"<?php if ($option_order_by == 'products_options_name') { echo ' SELECTED'; } ?>><?php echo TEXT_OPTION_NAME; ?></option></select></form></td> --Change With-- <td align="right"><br><form name="option_order_by" action="<?php echo FILENAME_PRODUCTS_ATTRIBUTES; ?>"><select name="selected" onChange="go_option()"><option value="products_options_id"<?php if ($option_order_by == 'products_options_id') { echo ' SELECTED'; } ?>><?php echo TEXT_OPTION_ID; ?></option><option value="products_options_name" selected<?php if ($option_order_by == 'products_options_name') { echo ' SELECTED'; } ?>><?php echo TEXT_OPTION_NAME; ?></option> </select></form></td> --Find-- <td><form name="attributes" action="<?php echo tep_href_link(FILENAME_PRODUCTS_ATTRIBUTES, 'action=' . $form_action . '&option_page=' . $option_page . '&value_page=' . $value_page . '&attribute_page=' . $attribute_page); ?>" method="post"><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td colspan="7" class="smallText"> --Change With-- <td><form name="attributes" action="<?php echo tep_href_link(FILENAME_PRODUCTS_ATTRIBUTES, 'action=' . $form_action . '&option_page=' . $option_page . '&value_page=' . $value_page . '&attribute_page=' . $attribute_page); ?>" method="post"><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td colspan="8" class="smallText"> Quote Link to comment Share on other sites More sharing options...
Medibot3D Posted April 23, 2010 Author Share Posted April 23, 2010 Ok I fixed the white screen on product info. But I'm just geting *** not enough product in stock even if there is. Quote Link to comment Share on other sites More sharing options...
mend Posted May 10, 2010 Share Posted May 10, 2010 Hi! I had this same problem, and came across this thread: http://www.oscommerce.com/forums/index.php?showtopic=274173 this should do the tricks.. :) Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.