laurajdunn Posted September 25, 2009 Posted September 25, 2009 http://www.tableplanning.com/shop/products_new.php I was expecting these images to be thumbnails...does anyone know why they are so huge? Thanks everyone! P.S I am amazed at just how long it takes me to edit these PHP files...I feel like a html newbie again! haha
Guest Posted September 25, 2009 Posted September 25, 2009 Laura, In the admin, configuration, images......set your image sizes smaller. Chris Dunn <~~
laurajdunn Posted September 26, 2009 Author Posted September 26, 2009 Laura, In the admin, configuration, images......set your image sizes smaller. Chris Dunn <~~ Hi Chris, Thank you for the reply. Unfortunately that hasn't worked, I had tried that in the first place but it didn't change the image size. I don't know why its just the images in the New Products section that are huge!
multimixer Posted September 26, 2009 Posted September 26, 2009 Can you post your products_new.php? My community profile | Template system for osCommerce - New: Responsive | Feedback channel
laurajdunn Posted September 28, 2009 Author Posted September 28, 2009 Can you post your products_new.php? <?php require('includes/application_top.php'); require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_PRODUCTS_NEW); $breadcrumb->add(NAVBAR_TITLE, tep_href_link(FILENAME_PRODUCTS_NEW)); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html <?php echo HTML_PARAMS; ?>> <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> <title><?php echo TITLE; ?></title> <base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0"> <!-- header //--> <?php require(DIR_WS_INCLUDES . 'header.php'); ?> <!-- header_eof //--> <!-- body //--> <tr> <td width="203" align="right" valign="top" style="padding-right:1px; "> <table width="203" cellpadding="0" cellspacing="0" border="0"> <?php require(DIR_WS_INCLUDES . 'column_left.php'); ?> </table> </td> <td width="352" valign="top" align="left" style="padding-left:1px;padding-right:1px;"> <table border="0" cellpadding="0" cellspacing="0" width="100%" > <tr> <td width="100%" valign="top" height="141" align="left" style="padding-bottom:2px; "><img src="images/banner.jpg" width="352" height="141" alt="" /></td> </tr> <tr> <td height="27" width="350" align="left" bgcolor="#DDD0A8" ><p style="color:#FFFFFF; font-family:Tahoma, Helvetica, sans-serif; font-size:16px; padding-left:5px;"><?php echo HEADING_TITLE; ?></p></td> </tr> <tr> <td ><?php echo tep_draw_separator('pixel_trans.gif', '100%', '2'); ?></td> </tr> <tr> <td valign="top" height="352" align="right" class="infoBox"> <table width="100%" style="margin-top:5px;" cellspacing="0" cellpadding="0" border="0"> <?php $products_new_array = array(); $products_new_query_raw = "select p.products_id, pd.products_name, p.products_image, p.products_price, p.products_tax_class_id, p.products_date_added, m.manufacturers_name from " . TABLE_PRODUCTS . " p left join " . TABLE_MANUFACTURERS . " m on (p.manufacturers_id = m.manufacturers_id), " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "' order by p.products_date_added DESC, pd.products_name"; $products_new_split = new splitPageResults($products_new_query_raw, MAX_DISPLAY_PRODUCTS_NEW); if (($products_new_split->number_of_rows > 0) && ((PREV_NEXT_BAR_LOCATION == '1') || (PREV_NEXT_BAR_LOCATION == '3'))) { ?> <tr> <td> <table height="100%" border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="smallText"><?php echo $products_new_split->display_count(TEXT_DISPLAY_NUMBER_OF_PRODUCTS_NEW); ?></td> <td align="right" class="smallText"><?php echo TEXT_RESULT_PAGE . ' ' . $products_new_split->display_links(MAX_DISPLAY_PAGE_LINKS, tep_get_all_get_params(array('page', 'info', 'x', 'y'))); ?></td> </tr> </table> </td> </tr> <?php } ?> <tr> <td valign="top"> <table border="0" width="100%" cellspacing="3" cellpadding="0"> <?php if ($products_new_split->number_of_rows > 0) { $products_new_query = tep_db_query($products_new_split->sql_query); while ($products_new = tep_db_fetch_array($products_new_query)) { if ($new_price = tep_get_products_special_price($products_new['products_id'])) { $products_price = '<s>' . $currencies->display_price($products_new['products_price'], tep_get_tax_rate($products_new['products_tax_class_id'])) . '</s> <span class="productSpecialPrice">' . $currencies->display_price($new_price, tep_get_tax_rate($products_new['products_tax_class_id'])) . '</span>'; } else { $products_price = $currencies->display_price($products_new['products_price'], tep_get_tax_rate($products_new['products_tax_class_id'])); } ?> <tr> <td width="<?php echo SMALL_IMAGE_WIDTH + 10; ?>" valign="top" class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products_new['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $products_new['products_image'], $products_new['products_name'], '', '') . '</a>'; ?></td> <td valign="top" class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products_new['products_id']) . '"><b><u>' . $products_new['products_name'] . '</u></b></a><br>' . TEXT_DATE_ADDED . ' ' . tep_date_long($products_new['products_date_added']) . '<br>' . TEXT_MANUFACTURER . ' ' . $products_new['manufacturers_name'] . '<br><br>' . TEXT_PRICE . ' ' . $products_price; ?></td> <td align="right" valign="middle" class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCTS_NEW, tep_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $products_new['products_id']) . '">' . tep_image_button('button_in_cart.gif', IMAGE_BUTTON_IN_CART) . '</a>'; ?></td> </tr> <?php } echo '<tr><td>'.tep_draw_separator('pixel_trans.gif', '100%', '3').' </td></tr>'; } else { ?> <tr> <td class="main"><?php echo TEXT_NO_NEW_PRODUCTS; ?></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', ''); ?></td> </tr> <?php } ?> </table> <?php if (($products_new_split->number_of_rows > 0) && ((PREV_NEXT_BAR_LOCATION == '2') || (PREV_NEXT_BAR_LOCATION == '3'))) { ?> <table height="25" width="100%" cellspacing="0" cellpadding="0"> <tr> <td align="left" class="smallText"> <?php echo $products_new_split->display_count(TEXT_DISPLAY_NUMBER_OF_PRODUCTS_NEW); ?></td> <td align="left" class="smallText"><?php echo TEXT_RESULT_PAGE . ' ' . $products_new_split->display_links(MAX_DISPLAY_PAGE_LINKS, tep_get_all_get_params(array('page', 'info', 'x', 'y'))); ?></td> </tr> <tr> <td colspan="2"><?php echo tep_draw_separator('pixel_trans.gif', '100%', '1'); ?> </td> </tr> </table> <?php } ?> </td> </tr> </table> </td> </tr> </table> <!-- body_text_eof //--> </td> <td width="165" valign="top" align="left"> <table border="0" width="100%" cellpadding="0" cellspacing="0"> <?php require(DIR_WS_INCLUDES . 'column_right.php'); ?> </table> </td> </tr> <!-- body_eof //--> <!-- footer //--> <?php require(DIR_WS_INCLUDES . 'footer.php'); ?> <!-- footer_eof //--> <br> </body> </html> <?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>
multimixer Posted September 29, 2009 Posted September 29, 2009 he size of your images comes from this line <td width="<?php echo SMALL_IMAGE_WIDTH + 10; ?>" valign="top" class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products_new['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $products_new['products_image'], $products_new['products_name'], '', '') . '</a>'; ?></td> Normally, setting the image width to something (ie 100px) in admin, should result to a 100px image in the new products display. Did you try this? Do you have any image contribution installed? My community profile | Template system for osCommerce - New: Responsive | Feedback channel
laurajdunn Posted September 29, 2009 Author Posted September 29, 2009 he size of your images comes from this line <td width="<?php echo SMALL_IMAGE_WIDTH + 10; ?>" valign="top" class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products_new['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $products_new['products_image'], $products_new['products_name'], '', '') . '</a>'; ?></td> Normally, setting the image width to something (ie 100px) in admin, should result to a 100px image in the new products display. Did you try this? Do you have any image contribution installed? Hi there, Yes I knew that was where the image size came from. I tried putting -50, but it did nothing. I had one but I deleted it as I couldn't get it work. I fear I might have to completely rebuild this from scratch!!
laurajdunn Posted September 29, 2009 Author Posted September 29, 2009 he size of your images comes from this line <td width="<?php echo SMALL_IMAGE_WIDTH + 10; ?>" valign="top" class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products_new['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $products_new['products_image'], $products_new['products_name'], '', '') . '</a>'; ?></td> Normally, setting the image width to something (ie 100px) in admin, should result to a 100px image in the new products display. Did you try this? Yes I did, it didn't change anything.
multimixer Posted September 29, 2009 Posted September 29, 2009 And how is the product_listing.php managing the image size? My community profile | Template system for osCommerce - New: Responsive | Feedback channel
laurajdunn Posted September 29, 2009 Author Posted September 29, 2009 And how is the product_listing.php managing the image size? Everything else is fine, its just the new products that is having problems. I'm going through the whole site making sure there's no stray php files in there causing conflict
Recommended Posts
Archived
This topic is now archived and is closed to further replies.