Newest update – missing Update Shopping Total
-
Just updated the newest version of Jigoshop and noticed that my ‘Update Total’ button is completely gone from the front end. I looked at my old backup code and this is what it used to show:
<tfoot>
<tr>
<td colspan=”6″ class=”actions”><?php $coupons = JS_Coupons::get_coupons(); if(!empty($coupons)): ?>
<div class=”coupon”>
<label for=”coupon_code”><?php _e(‘Coupon’, ‘jigoshop’); ?>:</label> <input type=”text” name=”coupon_code” class=”input-text” id=”coupon_code” value=”” />
<input type=”submit” class=”button” name=”apply_coupon” value=”<?php _e(‘Apply Coupon’, ‘jigoshop’); ?>” />
</div>
<?php endif; ?><?php jigoshop::nonce_field(‘cart’) ?>
<?php if ( Jigoshop_Base::get_options()->get_option( ‘jigoshop_cart_shows_shop_button’ ) == ‘no’ ) : ?>
<input type=”submit” class=”button” name=”update_cart” value=”<?php _e(‘Update Shopping Cart’, ‘jigoshop’); ?>” /> ” class=”checkout-button button-alt”><?php _e(‘Proceed to Checkout →’, ‘jigoshop’); ?>
<?php else : ?>
<input type=”submit” class=”button” name=”update_cart” value=”<?php _e(‘Update Shopping Cart’, ‘jigoshop’); ?>” />
<?php endif; ?>
</td>
</tr>
<?php if (count(jigoshop_cart::$applied_coupons)) : ?>
<tr>
<td colspan=”6″ class=”applied-coupons”>
<div>
<span class=”applied-coupons-label”><?php _e(‘Applied Coupons: ‘, ‘jigoshop’); ?></span>
<?php foreach ( jigoshop_cart::$applied_coupons as $code ) : ?>
” id=”<?php echo $code; ?>” class=”applied-coupons-values”><?php echo $code; ?>
<span class=”close”>×</span>
<?php endforeach; ?>
</div>
</td>
</tr>
<?php endif; ?>
<?php if ( Jigoshop_Base::get_options()->get_option( ‘jigoshop_cart_shows_shop_button’ ) == ‘yes’ ) : ?>
<tr>
<td colspan=”6″ class=”actions”>
” class=”checkout-button button-alt” style=”float:left;”><?php _e(‘← Return to Shop’, ‘jigoshop’); ?>
” class=”checkout-button button-alt”><?php _e(‘Proceed to Checkout →’, ‘jigoshop’); ?>
</td>
</tr>
<?php endif;
do_action(‘jigoshop_shop_table_cart_foot’);
?>
</tfoot>Where did this option to? If the user now, once on /cart, clicks the + to increase the number of a specific item the total on the page doesn’t refresh.
- The topic ‘Newest update – missing Update Shopping Total’ is closed to new replies.