Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

STS 4.2 adding STS Infobox Template


pawnmaster

Recommended Posts

I posted this to Templates and Images general list, but it really better listed in STS 4.x forum I think. Sorry for posting it twice if thats not the right thing to do.

 

I'm back again...with another problem:

 

I'm using STS 4.2 (great contribution that worked prior to installing Infobox Template) and tried to add Bill Kellum's Infobox Template to it. I get the error below. I can't write code except for minor adjustments, but I can cut and paste.

 

I have check that all the files uploaded and modified appear to be done accurately re: infobox template addition. I reviewed 30 pages of forum comments and found nothing similar this problem or potential solution that could be adapted. Maybe I've spent too many hours trying to solve it, so I'm asking for a new set of eyes to review and provide a suggestion where to proceed. It's probably something simple I'm overlooking. I'm thinking it may have some conflict with Individual Boxes Central Module? Any opinion on that?

 

Thanks in advance,

Scott

~~~~~~~~~~~~~~~~~~

Fatal error: Cannot instantiate non-existent class: noborderbox

in /mnt/(path excluded)/www/STS/catalog/includes/modules/new_products.php on line 104

~~~~~~~~~~~~~~~~~~

 

new noborderBox($info_box_contents); replaced new contentBox($info_box_contents); but I can't find where to make a similar adjustment to the infobox template modifications.

 

Here is the new_products code and near the end of this file is the line in question (highlighted in red for easy locating)

~~~~~~~~~~~~~~~~~~~~~

<?php

/*

$Id: new_products.php,v 1.34 2003/06/09 22:49:58 hpdl Exp $

 

osCommerce, Open Source E-Commerce Solutions

http://www.oscommerce.com

 

Copyright © 2003 osCommerce

 

Released under the GNU General Public License

*/

?>

<!-- new_products //-->

<table border="0" width="100%" cellspacing="0" cellpadding="0">

<tr>

<div><center><font color="#bb0066"><b><u>

<?php

$title = sprintf(TABLE_HEADING_NEW_PRODUCTS, strftime('%B'));

echo /*mws_header*/($title); ?>

</u></b></font></center></div>

<td>

<?php

$info_box_contents = array();

$info_box_contents[] = array('text' => sprintf(TABLE_HEADING_NEW_PRODUCTS, strftime('%B')));

 

// new contentBoxHeading($info_box_contents);

 

if ( (!isset($new_products_category_id)) || ($new_products_category_id == '0') ) {

$new_products_query = tep_db_query("select p.products_id, p.products_image, p.products_tax_class_id, if(s.status, s.specials_new_products_price, p.products_price) as products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id where products_status = '1' order by p.products_date_added desc limit " . MAX_DISPLAY_NEW_PRODUCTS);

} else {

$new_products_query = tep_db_query("select distinct p.products_id, p.products_image, p.products_tax_class_id, if(s.status, s.specials_new_products_price, p.products_price) as products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_CATEGORIES . " c where p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and c.parent_id = '" . (int)$new_products_category_id . "' and p.products_status = '1' order by p.products_date_added desc limit " . MAX_DISPLAY_NEW_PRODUCTS);

}

 

$row = 0;

$col = 0;

$info_box_contents = array();

while ($new_products = tep_db_fetch_array($new_products_query)) {

$new_products['products_name'] = tep_get_products_name($new_products['products_id']);

 

$sql = 'SELECT `products_description` FROM `products_description` WHERE products_id ='.$new_products['products_id'].' && language_id='.(int)$languages_id;

$description_query = tep_db_query($sql);

$description = mysql_fetch_array($description_query, MYSQL_ASSOC);

$description['products_description'] = substr($description['products_description'], 0, 150);

$desc_len = strlen($description['products_description']);

$description['products_description'][$desc_len-1] = '.';

$description['products_description'][$desc_len-2] = '.';

$description['products_description'][$desc_len-3] = '.';

 

//$description['products_description'] = ereg_replace("(Array)", "", $description['products_description']);

// $info_box_contents[$row][$col] = array('align' => 'center',

// 'params' => 'class="smallText" width="33%" valign="top"',

// 'text' => '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $new_products['products_image'], $new_products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '"><b>' . $new_products['products_name'] . '</b></a><br><br>' . strip_tags($description['products_description']) . '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, "products_id=" . $new_products["products_id"]). '">' . DESCR_READ_MORE . '</a><br><a href="' . tep_href_link(FILENAME_DEFAULT, tep_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $new_products['products_id']) . '">' . tep_image_button('cart_buy.gif', IMAGE_BUTTON_IN_CART) . '</a> ' . $currencies->display_price($new_products['products_price'], tep_get_tax_rate($new_products['products_tax_class_id'])) . '<br><br>');

if ($col == 0)

$info_box_contents[$row][$col] = array('align' => 'center',

'params' => 'class="smallText" cellspacing="0" width="50%" valign="top"',

'text' => '<table width="100%" border="0" cellspacing="0" bgcolor="#ffffff" cellpadding="0">

<tr>

<td align="right" valign="bottom" bordercolor="0"><img src="images/infobox/upper_left.gif" alt="1" width="12" height="33" /></td>

<td colspan="2" background="images/infobox/top.gif" class=mws_boxTop><a class=productTitle href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . substr($new_products['products_name'], 0, 30) . '</a></td>

<td align="left" valign="bottom"><img src="images/infobox/upper_right.gif" alt="2" width="14" height="33" /></td>

</tr>

<tr>

<td background="images/infobox/left.gif"> </td>

<td align="center"><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $new_products['products_image'], $new_products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br> <a href="' . tep_href_link(FILENAME_PRODUCTS_NEW). '">' . tep_image(DIR_WS_LANGUAGES . $language . '/images/buttons/new_.gif', IMAGE_NEW_PRODUCT). '</a> </td>

<td class="smallText">'. strip_tags($description['products_description']) . '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, "products_id=" . $new_products["products_id"]). '">' . DESCR_READ_MORE . '</a><br><br><a href="' . tep_href_link(FILENAME_DEFAULT, tep_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $new_products['products_id']) . '">' . tep_image_button('cart_buy.gif', IMAGE_BUTTON_IN_CART) . '</a> <strong>' . $currencies->display_price($new_products['products_price'], tep_get_tax_rate($new_products['products_tax_class_id'])).'</strong></td>

<td background="images/infobox/right.gif" class="smallText"><img src="images/infobox/right.gif" width="14" height="149" /></td>

</tr>

<tr>

<td align="right" valign="top"><img src="images/infobox/lower_left.gif" alt="5" width="12" height="12" /></td>

<td colspan="2" background="images/infobox/bot.gif"><img src="images/infobox/bot.gif" alt="5" width="2" height="12" /></td>

<td align="left" valign="top" class="smallText"><img src="images/infobox/lower_right.gif" alt="2" width="14" height="12" /></td>

</tr>

</table>');

else $info_box_contents[$row][$col] = array('align' => 'center',

'params' => 'class="smallText" cellspacing="0" width="50%" valign="top" cellpadding="0"',

'text' => '<table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="#ffffff">

<tr>

<td align="right" valign="bottom" bordercolor="0"><img src="images/infobox/upper_left.gif" alt="1" width="12" height="33" /></td>

<td colspan="2" background="images/infobox/top.gif" class=mws_boxTop><a class=productTitle href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . substr($new_products['products_name'], 0, 30) . '</a></td>

<td align="left" valign="bottom"><img src="images/infobox/upper_right.gif" alt="2" width="14" height="33" /></td>

</tr>

<tr>

<td background="images/infobox/left.gif"> </td>

<td align="center"><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $new_products['products_image'], $new_products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br> <a href="' . tep_href_link(FILENAME_PRODUCTS_NEW). '">' . tep_image(DIR_WS_LANGUAGES . $language . '/images/buttons/new_.gif', IMAGE_NEW_PRODUCT). '</a> </td>

<td class="smallText">'.strip_tags($description['products_description']) . '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, "products_id=" . $new_products["products_id"]). '">' . DESCR_READ_MORE . '</a><br><br><a href="' . tep_href_link(FILENAME_DEFAULT, tep_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $new_products['products_id']) . '">' . tep_image_button('cart_buy.gif', IMAGE_BUTTON_IN_CART) . '</a> <strong>' . $currencies->display_price($new_products['products_price'], tep_get_tax_rate($new_products['products_tax_class_id'])) . '</strong></td>

<td background="images/infobox/right.gif" class="smallText"><img src="images/infobox/right.gif" width="14" height="149" /></td>

</tr>

<tr>

<td align="right" valign="top"><img src="images/infobox/lower_left.gif" alt="2" width="12" height="12" /></td>

<td colspan="2" background="images/infobox/bot.gif"><img src="images/infobox/bot.gif" alt="2" width="2" height="12" /></td>

<td align="left" valign="top" class="smallText"><img src="images/infobox/lower_right.gif" alt="2" width="14" height="12" /></td>

</tr>

</table><br>');

 

// -- Find the 149 in thats second code, this define the internal height of module. -- //

 

$col ++;

if ($col > 1) {

$col = 0;

$row ++;

}

}

 

new noborderBox($info_box_contents);

// new contentBox($info_box_contents);

?>

</td>

<?php //echo mws_footer(''); ?>

</tr>

</table>

<!-- new_products_eof //-->

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...