alexpr Posted December 30, 2008 Share Posted December 30, 2008 i am having some problems with the specials.php in the right column of my shopping cart , i will like to make the text to show up completely , right now it only shows half of the text and i dont know where i can edit that part and show the complete description text .. here is my website http://www.bxbaby.com/main/specials.php please help Link to comment Share on other sites More sharing options...
roya.k Posted December 31, 2008 Share Posted December 31, 2008 i am having some problems with the specials.php in the right column of my shopping cart , i will like to make the text to show up completely , right now it only shows half of the text and i dont know where i can edit that part and show the complete description text .. here is my website http://www.bxbaby.com/main/specials.php please help Well, I suppose that somewhere in your code you use a php function (something like tep_break_string) to return a string with the number of characters that you set as a parameter . I suppose also that this parameter is set to 15 (because there are only 15 characters displayed in this example). So you can find this function and change simply the parameter, perhaps inside one of these files : /includes/boxes/specials.php or /includes/column_right.php Open source n'est pas un échange à sens unique ... La plupart du temps un simple merci ou quelques mots d'encouragement suffisent... Link to comment Share on other sites More sharing options...
alexpr Posted January 5, 2009 Author Share Posted January 5, 2009 Well, I suppose that somewhere in your code you use a php function (something like tep_break_string) to return a string with the number of characters that you set as a parameter . I suppose also that this parameter is set to 15 (because there are only 15 characters displayed in this example). So you can find this function and change simply the parameter, perhaps inside one of these files : /includes/boxes/specials.php or /includes/column_right.php well, i already look everywhere in my files.. i will post my includes/boxes/specials.php <?php /* $Id: specials.php,v 1.31 2003/06/09 22:21:03 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ if ($random_product = tep_random_select("select p.products_id, pd.products_name, p.products_price, p.products_tax_class_id, p.products_image, s.specials_new_products_price from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_SPECIALS . " s where p.products_status = '1' and p.products_id = s.products_id and pd.products_id = s.products_id and pd.language_id = '" . (int)$languages_id . "' and s.status = '1' order by s.specials_date_added desc limit " . MAX_RANDOM_SELECT_SPECIALS)) { ?> <!-- specials //--> <tr> <td> <?php $info_box_contents = array(); $info_box_contents[] = array('text' => BOX_HEADING_SPECIALS); new infoBoxHeading($info_box_contents, false, false, tep_href_link(FILENAME_SPECIALS)); $name_prod = '<span><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $random_product['products_id']) . '">' . substr( $random_product['products_name'],0,MAX_DESCR_NAME_BOX) . '</a></span>'; $pic_prod = '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $random_product['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $random_product['products_image'], $random_product['products_name'], HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT) . '</a>'; $sp_price_1 = '<span class="productSpecialPrice">' . $currencies->display_price($random_product['specials_new_products_price'], tep_get_tax_rate($random_product['products_tax_class_id'])).'</span>'; $sp_price_2 = '<s>' . $currencies->display_price($random_product['products_price'], tep_get_tax_rate($random_product['products_tax_class_id'])) . '</s>'; $sp_price = $sp_price_1.' '.$sp_price_2; $info_box_contents = array(); $info_box_contents[] = array('align' => 'center', 'text' => ' <table cellpadding="0" cellspacing="0" border="0"> <tr> <td class="middle" style="height:20px">'.$name_prod.'</td> </tr> <tr> <td> <br style="line-height:5px" />'.tep_draw_prod_top_box().$pic_prod.tep_draw_prod_bottom_box().'</td> </tr> <tr> <td style="height:200px" class="middle">'.$sp_price.'</td> </tr> </table> '); new infoBox($info_box_contents); ?> </td> </tr> <!-- specials_eof //--> <?php } ?> Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.