Hi, does anyone know how I could move the 'update' button to a more central part of the shopping cart or perhaps place it near the subtotal text - I've attached a screenshot for clarity.
Thanks.
Hi, does anyone know how I could move the 'update' button to a more central part of the shopping cart or perhaps place it near the subtotal text - I've attached a screenshot for clarity.
Thanks.
In a stock ZC the Update button is not where you show it. There's no way for us to figure out what's wrong without a link to your site. Also, did you install a free or purchased template? If so, which one? What version of ZC? Have you installed a mod which modifies the checkout process? The more details you can give us the better.
Rob
Hi Rob, it's version 1.3.9h and is a template by JSWebs. The site is www.coffeeroyale.co.uk
Thanks
For some reason that bit has been moved out of the table it belongs in. Perhaps it's your template that did this, perhaps not. But have a look at...
/includes/templates/template_default/templates/tpl_shopping_cart_default.php
Starting at line 75 or so, you should have this, just above <td class="cartProductDisplay">
Find where it actually is in that file and move it to where it belongs. Note that I found that in template_default because it isn't modified in my cart. If yours was modified correctly it would have been placed into an override folder, so the path would be...PHP Code:<td class="cartQuantityUpdate">
<?php
if ($product['buttonUpdate'] == '') {
echo '' ;
} else {
echo $product['buttonUpdate'];
}
?>
</td>
/includes/templates/YOUR_template/templates/tpl_shopping_cart_default.php
Rob