New Zenner
- Join Date:
- Jun 2006
- Posts:
- 9
- Plugin Contributions:
- 0
how do i show model # in shopping cart
A little more help if you please. I found a post by "ingenuitor" dated Sept. 20 where he (she) posted some code to make the modle # show in the shopping cart.
This was - ```
$products_name = '<table border="0" cellspacing="0" cellpadding="0" width=100%>' .
' <tr>' .
' <td class="ZZZproductListing-data" align="center" width=85><a href="' . zen_href_link(zen_get_info_page($products[$i]['id']), 'products_id=' . $products[$i]['id']) . '">' . (IMAGE_SHOPPING_CART_STATUS == 1 ? zen_image(DIR_WS_IMAGES . $products[$i]['image'], $products[$i]['name'], IMAGE_SHOPPING_CART_WIDTH, IMAGE_SHOPPING_CART_HEIGHT,'class=image_border') : '') . '</a> </td>'
' <td class="ZZZproductListing-data" valign="top"><a style="font-size:10px;" href="' . zen_href_link(zen_get_info_page($products[$i]['id']), 'products_id=' . $products[$i]['id']) . '">' . $products[$i]['model'] . '<br>' . $products[$i]['name'] . '</a> <span>' . $products[$i]['description'] .'<span>';
but I don't know where to place it. Can anyone help me with this?