Showing posts with label WooCommerce. Show all posts
Showing posts with label WooCommerce. Show all posts

Thay đổi text checkout trong woocommerce

Thay đổi text checkout trong woocommerce

Thay đổi text checkout trong woocommerce 

HOW TO CHANGE PROCEED TO CHECKOUT TEXT IN WOOCOMMERCE?


Dán code ở bên dưới vào file functions.php

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
}