/
home
/
rekodeb
/
osteo
/
wp-content
/
themes
/
zuperla
/
woocommerce
/
cart
/
Upload File
HOME
<?php /** * Proceed to checkout button * * Contains the markup for the proceed to checkout button on the cart * * @package WooCommerce\Templates * @version 7.0.1 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } if ( function_exists( 'wc_get_checkout_url' ) ) { $get_checkout_url = wc_get_checkout_url(); } else { $get_checkout_url = WC()->cart->get_checkout_url(); } echo '<a class="eut-btn eut-woo-btn eut-custom-btn eut-fullwidth-btn eut-bg-primary-1 eut-bg-hover-black" href="' . esc_url( $get_checkout_url ) . '"><span>' . esc_html__( 'Proceed to checkout', 'woocommerce' ) . '</span></a>'; //Omit closing PHP tag to avoid accidental whitespace output errors.