Thay đổi text checkout trong woocommerce
HOW TO CHANGE PROCEED TO CHECKOUT TEXT IN WOOCOMMERCE?
function woocommerce_button_proceed_to_checkout() {
$checkout_url = wc_get_checkout_url(); ?>
<a href="<?php echo esc_url($checkout_url);?>" class="checkout-button button alt wc-forward">
<img src="path_to_icon" alt="Secure Checkout"/><?php esc_html_e( 'Secure Checkout', 'woocommerce' ); ?>
</a>
<?php
}
0 comments:
Post a Comment