mark27uk3 Posted March 18, 2004 Share Posted March 18, 2004 Hi Guys, I would like to remove the border around the categories box, I have searched the wiki docs but can not see anything. I tried removing <tr> & <td> tags but all this did was stop my products being displayed. Can anyone point me in the right direction? Thanx Mark Lifes a bitch, then you marry one, then you die! Link to comment Share on other sites More sharing options...
Colin Posted March 18, 2004 Share Posted March 18, 2004 on line 79 of /includes/classes/boxes.php change $this->table_cellpadding = '1'; to $this->table_cellpadding = '0'; later, Colin Link to comment Share on other sites More sharing options...
mark27uk3 Posted March 18, 2004 Author Share Posted March 18, 2004 Thanx for that Colin, it worked a treat! How would I now remove the border from the main page when displaying products and how would I also remove the line that says: 'Displaying ? to ? (of ? products)' Thanx Mark Lifes a bitch, then you marry one, then you die! Link to comment Share on other sites More sharing options...
tlelliott77 Posted March 18, 2004 Share Posted March 18, 2004 You don't need to get rid of the borders, just change them to the same colour as your background. Change the .infoBox background in your stylesheet to match the background of the rest of your store. Should save looking for individual bits of code and changing them. Also make it easier to turn back on if needed. Regards Tim Link to comment Share on other sites More sharing options...
mark27uk3 Posted March 18, 2004 Author Share Posted March 18, 2004 Thanx Tim, Any ideas on my other question? Mark Lifes a bitch, then you marry one, then you die! Link to comment Share on other sites More sharing options...
tlelliott77 Posted March 18, 2004 Share Posted March 18, 2004 In modules/product_listing.php, comment out the line that says: <td class="smallText"><?php echo $listing_split->display_count(TEXT_DISPLAY_NUMBER_OF_PRODUCTS); ?></td> It right near the bottom Tim Link to comment Share on other sites More sharing options...
mark27uk3 Posted March 18, 2004 Author Share Posted March 18, 2004 Tim, I tried commenting out that line but it still appeared, I even removed this chunk of code <tr> <td class="smallText"><?php echo $listing_split->display_count(TEXT_DISPLAY_NUMBER_OF_PRODUCTS); ?></td> <td class="smallText" align="right"><?php echo TEXT_RESULT_PAGE . ' ' . $listing_split->display_links(MAX_DISPLAY_PAGE_LINKS, tep_get_all_get_params(array('page', 'info', 'x', 'y'))); ?></td> </tr> But still it appears! Mark Lifes a bitch, then you marry one, then you die! Link to comment Share on other sites More sharing options...
tlelliott77 Posted March 18, 2004 Share Posted March 18, 2004 Tested it myself before telling you and it worked for me. Did you comment out using an html comment or a php one. You need to use the html one. Can't think why else it wouldn't work unless you forgot to upload it. Tim Link to comment Share on other sites More sharing options...
mark27uk3 Posted March 18, 2004 Author Share Posted March 18, 2004 Could you post your product_listing.php so I could compare them please? Thanx Mark Lifes a bitch, then you marry one, then you die! Link to comment Share on other sites More sharing options...
tlelliott77 Posted March 18, 2004 Share Posted March 18, 2004 The bottom of my product_listing.php looks like this with the page 1 of 1 edited out. <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <!-- <td class="smallText"><?php echo $listing_split->display_count(TEXT_DISPLAY_NUMBER_OF_PRODUCTS); ?></td> --> <td class="smallText" align="right"><?php echo TEXT_RESULT_PAGE . ' ' . $listing_split->display_links(MAX_DISPLAY_PAGE_LINKS, tep_get_all_get_params(array('page', 'info', 'x', 'y'))); ?></td> </tr> </table> <?php } ?> Rgds Tim Link to comment Share on other sites More sharing options...
mark27uk3 Posted March 18, 2004 Author Share Posted March 18, 2004 Hi Tim, This is what my product_listing.php looks like <?php /* $Id: product_listing.php,v 1.1.1.1 2003/09/18 19:04:51 wilt Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ if ( ($listing_split->number_of_rows > 0) && ( (PREV_NEXT_BAR_LOCATION == '1') || (PREV_NEXT_BAR_LOCATION == '3') ) ) { ?> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> </table> <?php } $list_box_contents = array(); for ($col=0, $n=sizeof($column_list); $col<$n; $col++) { switch ($column_list[$col]) { case 'PRODUCT_LIST_MODEL': $lc_text = TABLE_HEADING_MODEL; $lc_align = ''; break; case 'PRODUCT_LIST_NAME': $lc_text = TABLE_HEADING_PRODUCTS; $lc_align = ''; break; case 'PRODUCT_LIST_MANUFACTURER': $lc_text = TABLE_HEADING_MANUFACTURER; $lc_align = ''; break; case 'PRODUCT_LIST_PRICE': $lc_text = TABLE_HEADING_PRICE; $lc_align = 'right'; break; case 'PRODUCT_LIST_QUANTITY': $lc_text = TABLE_HEADING_QUANTITY; $lc_align = 'right'; break; case 'PRODUCT_LIST_WEIGHT': $lc_text = TABLE_HEADING_WEIGHT; $lc_align = 'right'; break; case 'PRODUCT_LIST_IMAGE': $lc_text = TABLE_HEADING_IMAGE; $lc_align = 'center'; break; case 'PRODUCT_LIST_BUY_NOW': $lc_text = TABLE_HEADING_BUY_NOW; $lc_align = 'center'; break; } if ( ($column_list[$col] != 'PRODUCT_LIST_BUY_NOW') && ($column_list[$col] != 'PRODUCT_LIST_IMAGE') ) { $lc_text = tep_create_sort_heading($HTTP_GET_VARS['sort'], $col+1, $lc_text); } $list_box_contents[0][] = array('align' => $lc_align, 'params' => 'class="productListing-heading"', 'text' => ' ' . $lc_text . ' '); } if ($listing_split->number_of_rows > 0) { $rows = 0; $listing_query = tep_db_query($listing_split->sql_query); while ($listing = tep_db_fetch_array($listing_query)) { $rows++; if (($rows/2) == floor($rows/2)) { $list_box_contents[] = array('params' => 'class="productListing-even"'); } else { $list_box_contents[] = array('params' => 'class="productListing-odd"'); } $cur_row = sizeof($list_box_contents) - 1; for ($col=0, $n=sizeof($column_list); $col<$n; $col++) { $lc_align = ''; switch ($column_list[$col]) { case 'PRODUCT_LIST_MODEL': $lc_align = ''; $lc_text = ' ' . $listing['products_model'] . ' '; break; case 'PRODUCT_LIST_NAME': $lc_align = ''; if (isset($HTTP_GET_VARS['manufacturers_id'])) { $lc_text = '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'manufacturers_id=' . $HTTP_GET_VARS['manufacturers_id'] . '&products_id=' . $listing['products_id']) . '">' . $listing['products_name'] . '</a>'; } else { $lc_text = ' <a href="' . tep_href_link(FILENAME_PRODUCT_INFO, ($cPath ? 'cPath=' . $cPath . '&' : '') . 'products_id=' . $listing['products_id']) . '">' . $listing['products_name'] . '</a> '; } break; case 'PRODUCT_LIST_MANUFACTURER': $lc_align = ''; $lc_text = ' <a href="' . tep_href_link(FILENAME_DEFAULT, 'manufacturers_id=' . $listing['manufacturers_id']) . '">' . $listing['manufacturers_name'] . '</a> '; break; case 'PRODUCT_LIST_PRICE': $lc_align = 'right'; if (tep_get_products_special_price($listing['products_id'])) { $lc_text = ' <s>' . $currencies->display_price($listing['products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</s> <span class="productSpecialPrice">' . $currencies->display_price(tep_get_products_special_price($listing['products_id']), tep_get_tax_rate($listing['products_tax_class_id'])) . '</span> '; } else { $lc_text = ' ' . $currencies->display_price($listing['products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . ' '; } break; case 'PRODUCT_LIST_QUANTITY': $lc_align = 'right'; $lc_text = ' ' . $listing['products_quantity'] . ' '; break; case 'PRODUCT_LIST_WEIGHT': $lc_align = 'right'; $lc_text = ' ' . $listing['products_weight'] . ' '; break; case 'PRODUCT_LIST_IMAGE': $lc_align = 'center'; if (isset($HTTP_GET_VARS['manufacturers_id'])) { $lc_text = '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'manufacturers_id=' . $HTTP_GET_VARS['manufacturers_id'] . '&products_id=' . $listing['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $listing['products_image'], $listing['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a>'; } else { $lc_text = ' <a href="' . tep_href_link(FILENAME_PRODUCT_INFO, ($cPath ? 'cPath=' . $cPath . '&' : '') . 'products_id=' . $listing['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $listing['products_image'], $listing['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a> '; } break; case 'PRODUCT_LIST_BUY_NOW': $lc_align = 'center'; $lc_text = '<a href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $listing['products_id']) . '">' . tep_template_image_button('button_buy_now.gif', IMAGE_BUTTON_BUY_NOW) . '</a> '; break; } $list_box_contents[$cur_row][] = array('align' => $lc_align, 'params' => 'class="productListing-data"', 'text' => $lc_text); } } new productListingBox($list_box_contents); } else { $list_box_contents = array(); $list_box_contents[0] = array('params' => 'class="productListing-odd"'); $list_box_contents[0][] = array('params' => 'class="productListing-data"', 'text' => TEXT_NO_PRODUCTS); new productListingBox($list_box_contents); } if ( ($listing_split->number_of_rows > 0) && ((PREV_NEXT_BAR_LOCATION == '2') || (PREV_NEXT_BAR_LOCATION == '3')) ) { ?> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> </table> <?php } ?> Pick the bones out of this one! Mark Lifes a bitch, then you marry one, then you die! Link to comment Share on other sites More sharing options...
tlelliott77 Posted March 18, 2004 Share Posted March 18, 2004 Well if yolu've uploaded that to the right directory I don't see how it can display the page 1 of 1 etc. Sorry, don't know why it still is. Post your solution when you find it. Tim Link to comment Share on other sites More sharing options...
mark27uk3 Posted March 18, 2004 Author Share Posted March 18, 2004 Is anyone else able to help with this one?? Thanx Mark Lifes a bitch, then you marry one, then you die! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.