You can make cart widget works like this:
- Insert one new row control under "Total", above 2 buttons.
- In first columns insert CMS Code control with code number 1:
- In second column CMS Code control with code number 2:
- They will give you original WooCommerce translating.
- Delete old two buttons.
- Style new buttons in Themler.
Code number 1:
<?php global $woocommerce; ?>
<a href="<?php echo theme_woocommerce_enabled() ? $woocommerce->cart->get_cart_url() : ''; ?>" class=" bd-button"><?php _e('View', 'woocommerce'); ?></a>
Code number 2:
<?php global $woocommerce; ?>
<a href="<?php echo $woocommerce->cart->get_checkout_url(); ?>" class=" bd-button"><?php _e('Proceed to Checkout', 'woocommerce'); ?></a>
You can make cart widget works like this:
- Insert one new row control under "Total", above 2 buttons.
- In first columns insert CMS Code control with code number 1:
- In second column CMS Code control with code number 2:
- They will give you original WooCommerce translating.
- Delete old two buttons.
- Style new buttons in Themler.
Code number 1:
<?php global $woocommerce; ?>
<a href="<?php echo theme_woocommerce_enabled() ? $woocommerce->cart->get_cart_url() : ''; ?>" class=" bd-button"><?php _e('View', 'woocommerce'); ?></a>
Code number 2:
<?php global $woocommerce; ?>
<a href="<?php echo $woocommerce->cart->get_checkout_url(); ?>" class=" bd-button"><?php _e('Proceed to Checkout', 'woocommerce'); ?></a>