Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Ommit images from "also purchased" module


Top_Speed

Recommended Posts

Posted

Hi all,

 

Probably simple but my shop is live and I'm wanting to take out the images in the catalog/includes/modules/also_purchased_products.php

 

Current file:

<?php
 if (isset($HTTP_GET_VARS['products_id'])) {
   $orders_query = tep_db_query("select p.products_id, p.products_image from " . TABLE_ORDERS_PRODUCTS . " opa, " . TABLE_ORDERS_PRODUCTS . " opb, " . TABLE_ORDERS . " o, " . TABLE_PRODUCTS . " p where opa.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and opa.orders_id = opb.orders_id and opb.products_id != '" . (int)$HTTP_GET_VARS['products_id'] . "' and opb.products_id = p.products_id and opb.orders_id = o.orders_id and p.products_status = '1' group by p.products_id order by o.date_purchased desc limit " . MAX_DISPLAY_ALSO_PURCHASED);
   $num_products_ordered = tep_db_num_rows($orders_query);
   if ($num_products_ordered >= MIN_DISPLAY_ALSO_PURCHASED) {
?>
<!-- go-karts also purchased //-->
<?php
     $info_box_contents = array();
     $info_box_contents[] = array('text' => TEXT_ALSO_PURCHASED_PRODUCTS);

     new contentBoxHeading($info_box_contents);

     $row = 0;
     $col = 0;
     $info_box_contents = array();
     while ($orders = tep_db_fetch_array($orders_query)) {
       $orders['products_name'] = tep_get_products_name($orders['products_id']);
       $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=' . $orders['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $orders['products_image'], $orders['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT,'class=shadow1') . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $orders['products_id']) . '">' . $orders['products_name'] . '</a>');

       $col ++;
       if ($col > 2) {
         $col = 0;
         $row ++;
       }
     }

     new contentBox($info_box_contents);
?>
<!-- ago-karts also purchased eof //-->
<?php
   }
 }
?>

 

Pre thanks for any line change help!

define('PROJECTS', 'Something that goes on forever!');

Posted

Take this out

 

<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $orders['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $orders['products_image'], $orders['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT,'class=shadow1') . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $orders['products_id']) . '">' . $orders['products_name'] . '</a>

at the end of the day the code will be good

Archived

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

×
×
  • Create New...