Totally Zenned
- Join Date:
- Dec 2009
- Location:
- Amersfoort, The Netherlands
- Posts:
- 2,862
- Plugin Contributions:
- 5
One-Page Checkout [Support Thread]
Thank, must have missed it :blush:> lat9:
In the readme's Overview / Operation tab:
v2.0.0 of One-Page Checkout has been validated with the ZCA Bootstrap Template, v1.0.4. Since that template uses a table-based layout for the order-totals' formatting, you'll need to make a template-override change to includes/templates/template_default/templates/tpl_modules_opc_shopping_cart.php, wrapping the order-totals' output with table tags:
if (MODULE_ORDER_TOTAL_INSTALLED) {
$row_class = ($last_row_class == 'rowEven') ? 'rowOdd' : 'rowEven';
//-bof-opc/bootstrap, added <table></table> since the order totals are displayed as table-rows.
?>
<tr class="<?php echo $row_class; ?>" id="cartOrderTotals">
<td colspan="<?php echo (count($order->info['tax_groups']) > 1) ? 4 : 3; ?>" id="orderTotalDivs">[B]<table width="100%">[/B]<?php $order_total_modules->process (); $order_total_modules->output(); ?>[B]</table>[/B]</td>
</tr>