Thêm nội dung văn bản vào tiêu đề giỏ hàng
13/05/2025 17
Hướng dẫn chèn tiêu đề vào trang thanh toán và giỏ hàng
Instructions for inserting titles into checkout and shopping cart pages
Bạn muốn chèn nội dung hoặc tiêu đề vào trang thanh toán giỏ hàng giống như hình dưới đây, hãy chép đoạn code sau vào file function và hưởng thành quả nhé:
If you want to insert content or title into the shopping cart checkout page like the image below, copy the following code into the function file and enjoy the results:
function add_text_to_cart_title(){
if(is_cart()||is_checkout()){
echo '<div class="container text-center h1 mt">Thanh toán</div>';
}
}
add_action('flatsome_after_header','add_text_to_cart_title',999);