| > |
align="center" nowrap>FONT_STYLE_TABLE_HEADING echo TABLE_HEADING_QUANTITY; ?> |
if (PRODUCT_LIST_MODEL) {
?>
nowrap>FONT_STYLE_TABLE_HEADING echo TABLE_HEADING_MODEL; ?> |
}
?>
nowrap>FONT_STYLE_TABLE_HEADING echo TABLE_HEADING_PRODUCTS; ?> |
align="right" nowrap>FONT_STYLE_TABLE_HEADING echo TABLE_HEADING_TOTAL; ?> |
' . "\n";
echo ' ' . tep_image(DIR_WS_IMAGES . 'button_small_delete.gif', 'Remove ' . $products_name . ' from Shopping Cart.') .
' | ' . "\n";
echo ' | ' . "\n";
if (PRODUCT_LIST_MODEL) echo ' ' . FONT_STYLE_MAIN . ' ' . $products[$i]['model'] . ' | ' . "\n";
echo ' ' . FONT_STYLE_MAIN . ' ' . $products_name .
// IACOPO
//'' . "\n";
' '. $artista .'' . "\n";
//------display customer choosen option --------
$attributes_exist = '0';
if ($cart->contents[$products[$i]['id']]['attributes']) {
$attributes_exist = '1';
reset($cart->contents[$products[$i]['id']]['attributes']);
while (list($option, $value) = each($cart->contents[$products[$i]['id']]['attributes'])) {
$attributes = tep_db_query("select popt.products_options_name, poval.products_options_values_name from products_options popt, products_options_values poval, products_attributes pa where pa.products_id = '" . $products[$i]['id'] . "' and pa.options_id = '" . $option . "' and pa.options_id = popt.products_options_id and pa.options_values_id = '" . $value . "' and pa.options_values_id = poval.products_options_values_id");
$attributes_values = tep_db_fetch_array($attributes);
echo "\n" . ' - ' . $attributes_values['products_options_name'] . ' : ' . $attributes_values['products_options_values_name'] . '';
echo '';
}
}
//------display customer choosen option eof-----
echo ' | ' . "\n";
echo ' ' . FONT_STYLE_MAIN .
' ' . tep_currency_format($products[$i]['quantity'] * $products[$i]['price']) . ' ';
//------display customer choosen option --------
if ($attributes_exist == '1') {
reset($cart->contents[$products[$i]['id']]['attributes']);
while (list($option, $value) = each($cart->contents[$products[$i]['id']]['attributes'])) {
$attributes = tep_db_query("select pa.options_values_price, pa.price_prefix from products_options popt, products_options_values poval, products_attributes pa where pa.products_id = '" . $products[$i]['id'] . "' and pa.options_id = '" . $option . "' and pa.options_id = popt.products_options_id and pa.options_values_id = '" . $value . "' and pa.options_values_id = poval.products_options_values_id");
$attributes_values = tep_db_fetch_array($attributes);
if ($attributes_values['options_values_price'] != '0') {
echo "\n" . ' ' . $attributes_values['price_prefix'] . tep_currency_format($products[$i]['quantity'] * $attributes_values['options_values_price']) . ' ';
} else {
echo "\n" . ' ';
}
}
}
//------display customer choosen option eof-----
echo ' | ' . "\n";
echo ' ' . "\n";
}
?>
| echo tep_black_line(); ?> |
| FONT_STYLE_TABLE_HEADING Sub Totale |
FONT_STYLE_TABLE_HEADING
Fatal error: Call to a member function show_total() on a non-object in C:\Program Files\xampp\htdocs\webserver\symphonyshop_it\shop\shopping_cart.php on line 159
| |