Hey guys...How can I get rid of the update button next to quantity in my shopping cart? All my products are unique so I don't need the button...
Hey guys...How can I get rid of the update button next to quantity in my shopping cart? All my products are unique so I don't need the button...
Might peek in the settings for the Configuration ... Stock ...
Show Shopping Cart - Update Cart Button Location
Show on Shopping Cart Update Cart Button Location as:
1= Next to each Qty Box
2= Below all Products
3= Both Next to each Qty Box and Below all Products
Note: this setting controls which of 3 tpl_shopping_cart_default files are called
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.1]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Hmm...It seems that those options only move the button rather than get rid of it completely...I'd like to get rid of it if I could...
You'd have to alter the tpl_ file ...
Note: no update button be sure to remove the checkboxes for deleting ...
PHP Code:<?php
// show update cart button
if (SHOW_SHOPPING_CART_UPDATE == 2 or SHOW_SHOPPING_CART_UPDATE == 3) {
?>
<div class="buttonRow back"><?php echo zen_image_submit(ICON_IMAGE_UPDATE, ICON_UPDATE_ALT); ?></div>
<?php
} else { // don't show update button below cart
?>
<?php
} // show checkout button
?>
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.1]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Bookmarks