CMXX - Placeorder initial version

This commit is contained in:
“VeLiTi”
2025-02-13 11:23:15 +01:00
parent 2eaf83c3fe
commit 3424c9fadc
14 changed files with 446 additions and 377 deletions

View File

@@ -39,13 +39,13 @@
</tr>
</thead>
<tbody>
<?php foreach($products_in_cart['cart_details']['products'] as $product): ?>
<?php foreach($products['products'] as $product): ?>
<tr>
<td><?=$product['meta']['name']?></td>
<td><?=$product['options']?></td>
<td><?=implode(", ", $product['options'])?></td>
<td><?=$product['quantity']?></td>
<td><?=currency_code?><?=number_format($product['option_price'],2)?></td>
<td style="text-align:right;"><?=number_format($product['option_price'] * $product['quantity'],2)?></td>
<td><?=currency_code?><?=number_format($product['options_price'],2)?></td>
<td style="text-align:right;"><?=number_format($product['options_price'] * $product['quantity'],2)?></td>
</tr>
<?php endforeach; ?>
<tr>