Đổi Shopping Cart – Checkout Details – Order Complete Sang Tiếng Việt trong wordpress đơn giản nhất.
Các bạn chèn đoạn code dưới đây vào file funtions.php
trong child theme (theme con)
add_filter( 'gettext', function ( $strings ) { $text = array( 'SHOPPING CART' => 'Giỏ Hàng', 'CHECKOUT DETAILS' => 'Thanh Toán', 'ORDER COMPLETE' => 'Hoàn Tất', ); $strings = str_ireplace( array_keys( $text ), $text, $strings ); return $strings; }, 20 );