TerryK Posted December 11, 2003 Share Posted December 11, 2003 My products often include long descriptions (i.e. song listings where product contains 100+ titles). I'd like to move the infobox with 'Reviews' and 'Add to Cart' buttons from below the product description to above it. (I know I could simply store the detail in a link, but would like to keep extra clicks to a minimum, and the rearrangement of the infobox would work just fine.) I don't see anything in product_info.php that even references the infobox, and my searches have been futile. Can anyone help? Thanks in advance. TerryK Terry Kluytmans Contribs Installed: Purchase Without Account (PWA); Big Images, Product Availability, Description in Product Listing, Graphical Infobox, Header Tags Controller, Login Box, Option Type Feature, plus many layout changes & other mods of my own, like: Add order total to checkout_shipment Add order total to checkout_payment Add radio buttons at checkout_shipping (for backorder options, etc.) Duplicate Table Rate Shipping Module Better Product Review Flow * If at first you don't succeed, find out if there's a prize for the loser. * Link to comment Share on other sites More sharing options...
phpro Posted December 11, 2003 Share Posted December 11, 2003 Try looking around line 207... that's where the table for the infobox begins. phpro Link to comment Share on other sites More sharing options...
TomThumb Posted December 11, 2003 Share Posted December 11, 2003 Move this code from near the bottom of the file to right below the line that starts the form. ie <form name="cart_quantity" method="post" ... <tr> <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox"> <tr class="infoBoxContents"> <td><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> <td class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_REVIEWS, tep_get_all_get_params()) . '">' . tep_image_button('button_reviews.gif', IMAGE_BUTTON_REVIEWS) . '</a>'; ?></td> <td class="main" align="right"><?php echo tep_draw_hidden_field('products_id', $product_info['products_id']) . tep_image_submit('button_in_cart.gif', IMAGE_BUTTON_IN_CART) ?></td> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> </tr> </table></td> </tr> </table></td> </tr> while (!succeed) {try()}; GMT -6:00 Link to comment Share on other sites More sharing options...
TerryK Posted December 12, 2003 Author Share Posted December 12, 2003 Perfect! Thanks so much! TerryK Terry Kluytmans Contribs Installed: Purchase Without Account (PWA); Big Images, Product Availability, Description in Product Listing, Graphical Infobox, Header Tags Controller, Login Box, Option Type Feature, plus many layout changes & other mods of my own, like: Add order total to checkout_shipment Add order total to checkout_payment Add radio buttons at checkout_shipping (for backorder options, etc.) Duplicate Table Rate Shipping Module Better Product Review Flow * If at first you don't succeed, find out if there's a prize for the loser. * Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.