Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Urgent help please !!!!!!!!


Elazar

Recommended Posts

Posted

Hi,

 

Could someone help me please??

 

I installed Contol New Products v_2_1 Contribution, But since I installed before the whats_new_scroll contribution I do not know how to modify the last file for the Contol New Products v_2_1 Contribution, because it didn't the same code that I need to find..

 

Hear is the readme file of the Contol New Products v_2_1 Contribution and my whats_new.php file:

 

Could someone help me please what I need to change ?? I am new to PHP :(

 

THANKS IN ADVANCE !!!

 

Elazar

 

________________________________________________________________________________

______

 

####################################################

#Step 4: catalog/includes/boxes/whats_new.php #

####################################################

 

about line 13, find

 

if ($random_product = tep_random_select("select products_id, products_image, products_tax_class_id, products_price from " . TABLE_PRODUCTS . " where products_status = '1' order by products_date_added desc limit " . MAX_RANDOM_SELECT_NEW)) {

 

and replace with:

 

$days = EXPIRE_NEW_PRODUCTS;

if ($random_product = tep_random_select("select products_id, products_image, products_tax_class_id, products_date_available, products_price from " . TABLE_PRODUCTS . " where products_date_added > SUBDATE( now( ) , INTERVAL " . $days . " DAY ) and products_status = '1' order by products_date_added desc limit " . MAX_RANDOM_SELECT_NEW)) {

________________________________________________________________________________

_______

 

 

MY catalog/includes/boxes/whats_new.php FILE:

===================================================================

 

<?php

/*

$Id: whats_new.php,v 1.31 2003/02/10 22:31:09 hpdl Exp $

 

osCommerce, Open Source E-Commerce Solutions

http://www.oscommerce.com

 

Copyright © 2003 osCommerce

 

Released under the GNU General Public License

*/

 

$wt_query = tep_db_query("select p.products_id, pd.products_name, p.products_price, p.products_tax_class_id, p.products_image from " . TABLE_PRODUCTS . " p, " . 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 products_date_added desc limit " . 25);

if (tep_db_num_rows($wt_query)) {

?>

<!-- whats_new //-->

<tr>

<td>

<?php

 

 

$info_box_contents = array();

$info_box_contents[] = array('text' => BOX_HEADING_WHATS_NEW);

 

new infoBoxHeading($info_box_contents, false, false, tep_href_link(FILENAME_PRODUCTS_NEW));

 

while ($random_product = tep_db_fetch_array($wt_query)) {

$random_product['specials_new_products_price'] = tep_get_products_special_price($random_product['products_id']);

if (tep_not_null($random_product['specials_new_products_price'])) {

$wt .= '<center><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'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $random_product['products_id']) . '">' . $random_product['products_name'] . '</a><br><s>' . $currencies->display_price($random_product['products_price'], tep_get_tax_rate($random_product['products_tax_class_id'])) . '</s><br><span class="productSpecialPrice">' . $currencies->display_price($random_product['specials_new_products_price'], tep_get_tax_rate($random_product['products_tax_class_id']));

$wt .= "</SPAN><BR />\n---------\n";

} else {

$wt .= '<center><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'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $random_product['products_id']) . '">' . $random_product['products_name'] . '</a><br>' . $currencies->display_price($random_product['products_price'], tep_get_tax_rate($random_product['products_tax_class_id'])) . '<br>';

$wt .= "</SPAN><BR />\n---------\n";

}

}

 

$info_box_contents = array();

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

'text' => '<MARQUEE behavior= "scroll" align= "center" direction= "up" width="140" height="160" scrollamount= "2" scrolldelay= "20" onmouseover=\'this.stop()\' onmouseout=\'this.start()\'>'.$wt.'</span></MARQUEE>');

 

new infoBox($info_box_contents);

?>

</td>

</tr>

<!-- whats_new_eof //-->

<?php

}

?>

 

====================================================================

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...