Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Help with code needed


julianpuje

Recommended Posts

Posted

Hi all

 

I am trying to add my specials box to the centre of my index with 3 images going across the page. The standard is just one image/product as it is usually used in the left or right columns. I want to be able to display 3 across the page. The easy bit is adding the box to the middle, which i've done. If anyone can help me out with this and take a look at the code below and tell me what i need to do i would really appreciate it. I am no coder and really wouldn't know where to start. The code below is for a random product.

 

TIA

Julian

 

 $info_box_contents = array();
$info_box_contents[] = array('text' => '<a class="textbox" href="' . 

tep_href_link(FILENAME_SPECIALS) . '">' . BOX_HEADING_SPECIALS . 

'</a>');


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

$info_box_contents = array();
$info_box_contents[] = array('align' => 'center',
							 'text' => '<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(tep_get_products_special_price($random_product['products_id']), tep_get_tax_rate($random_product['products_tax_class_id'])) . '</span>');

new infoBox($info_box_contents);
?>

A little knowledge is dangerous, I SHOULD KNOW.

If Life Begins At 40, What ends????

Posted

Thanks for the info and link Mark :thumbsup: I forgot to add notify replies so i've only just found that you replied.

 

Cheers

 

Julian

A little knowledge is dangerous, I SHOULD KNOW.

If Life Begins At 40, What ends????

  • 1 month later...

Archived

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

×
×
  • Create New...