I have a problem with my newly installed store - the sub total is not appearing on the cart page
[attachment cleanup by admin]
What is the version of VM + Joomla that you are using ?
VM = 1.1.4 Joomla = 1.5.15
It's weird, I've checked with my installation in localhost and it works well. Are there anybody else can confirm this issue?
can you see it when you view source?
Why is there 'undefined' twice under the name? Looks like something wrong with the attributes or some mod not mentioned.
Ah!! Might be getting somewhere. I have removed attributes from the product. No apparent change. Here is the snippet of source code for that area. Could it be a table width/align problem? </tr>
<!--Begin of SubTotal, Tax, Shipping, Coupon Discount and Total listing -->
<tr class="sectiontableentry1">
<td colspan="4" align="right">Subtotal:</td>
<td colspan="3" align="right">£169.00</td>
</tr>
<tr>
<td colspan="4"> </td>
<td colspan="3"><hr /></td>
</tr>
<tr class="sectiontableentry1">
<td colspan="4" align="right">Total: </td>
<td colspan="3" align="right"><strong>£169.00</strong></td>
</tr>
<tr class="sectiontableentry1">
<td colspan="4" align="right" valign="top">Tax Total: </td>
<td colspan="3" align="right">£0.00</td>
</tr>
<tr>
<td colspan="7"><hr /></td>
</tr>
</table>
I had problems with the basket until I assigned classes to the tds and styled them accordingly.
basket_b2c.html.php
<?php foreach( $product_rows as $product ) { ?>
<tr valign="top" class="cart_content">
<td class="cart_contentName"><?php echo $product['product_name'] . $product['product_attributes'] ?></td>
<td class="cart_contentSku"><?php echo $product['product_sku'] ?></td>
<td class="cart_contentPrice"><?php echo $product['product_price'] ?></td>
<td class="cart_contentUpdate"><?php echo $product['update_form'] ?><?php echo $product['delete_form'] ?>
</td>
<td align="left" class="cart_contentSub"><?php echo $product['subtotal'] ?></td><td></td>
</tr>
Thanks - I'll try these changes in the basket_b2c.html.php file
I have made the chnages as suggested but still not displaying the sub totals
You are goig to have to style it
change the width of the cell,, etc.