Im having a few issues with my shopping cart….
1. Id like to show the “Option Name” not the “Option” in the basket. Is there a way of doing something like this…
{item_options:cf_product_option_colour:option_name}
2. My basket doesn’t update/delete items properly. It only lets me delete the bottom item if theres 3 items for example, or if i select all 3 items and press delete/update it just refreshes the page and doesn’t do anything. How can i fix this? Here’s my code:
{exp:cartthrob:cart_items_info}
{if no_results}
<div class="note">Your basket is currently empty</div>
{/if}
{exp:channel:entries channel="{channels}" orderby="date" disable="{sn_disable_default}" limit="1"}
{exp:cartthrob:update_cart_form return="basket/index"}
{if first_row}
<table cellpadding="0" cellspacing="0">
<tr>
<th>Product</th>
<th>Colour</th>
<th>Size</th>
<th>Price</th>
<th>Quantity</th>
<th>Remove</th>
</tr>
{/if}
<tr>
<td>{title}</td>
<td>{item_options:cf_product_option_colour}</td>
<td>{item_options:cf_product_option_size}</td>
<td>£{cf_product_price}</td>
<td><input type="text" name="quantity[{row_id}]" value="{quantity}" class="quantity w30" /></td>
<td><input type="checkbox" name="delete[{row_id}]" class="checkbox"></td>
</tr>
{if last_row}
<tr>
<td colspan="5" class="table-title">Total Items</td>
<td class="table-title-value">{exp:cartthrob:total_items_count}</td>
</tr>
<tr>
<td colspan="5" class="table-title">Subtotal</td>
<td class="table-title-value">{cart_subtotal}</td>
</tr>
<tr>
<td colspan="5" class="table-title">Shipping</td>
<td class="table-title-value">{cart_shipping}</td>
</tr>
<tr>
<td colspan="5" class="table-title">Discount</td>
<td class="table-title-value">{cart_discount}</td>
</tr>
<tr>
<td colspan="5" class="table-title">VAT</td>
<td class="table-title-value">{cart_tax} ({cart_tax_rate}%)</td>
</tr>
<tr>
<td colspan="5" class="table-title">Total</td>
<td class="table-title-value">{cart_total}</td>
</tr>
</table>
<div class="box-content fr w320 mt18">
<input type="submit" value="Update Basket" title="Update Basket" class="btn-ui mr5 fl" />
<a href="{site_url}index.php/shop/" title="Continue Shopping" class="btn-ui colour-pink">Continue Shopping</a>
<a href="{site_url}index.php/basket/checkout/" title="Checkout" class="btn-ui colour-pink">Checkout</a>
</div>
{/if}
{/exp:cartthrob:update_cart_form}
{/exp:channel:entries}
{/exp:cartthrob:cart_items_info}
