New Zenner
- Join Date:
- Apr 2009
- Location:
- Neath, South Wales
- Posts:
- 53
- Plugin Contributions:
- 0
Views: 656
New Zenner
Totally Zenned
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
New Zenner
Hi Rob, it's version 1.3.9h and is a template by JSWebs. The site is https://www.coffeeroyale.co.uk
Thanks
Totally Zenned
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">
<td class="cartQuantityUpdate">
<?php
if ($product['buttonUpdate'] == '') {
echo '' ;
} else {
echo $product['buttonUpdate'];
}
?>
</td>
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...
/includes/templates/YOUR_template/templates/tpl_shopping_cart_default.php
Rob
Tell staff why this post should be reviewed.