Các đoạn code thường dùng cho WordPress

  • Home
  • Các đoạn code thường dùng cho WordPress
Shape Image One
Shape Image One
 Shape Image Four
 Shape Image Four
 Shape Image Four
 Shape Image Four
 Shape Image Four
 Shape Image Four

Code ẩn Gurtenberg

add_filter(‘use_block_editor_for_post’, ‘__return_false’);

 

Code đổi Add to cart thành Mua ngay. Thêm mã phía dưới vào cuối tệp function.php

// To change add to cart text on single product page
add_filter( ‘woocommerce_product_single_add_to_cart_text’, ‘woocommerce_custom_single_add_to_cart_text’ );
function woocommerce_custom_single_add_to_cart_text() {
return __( ‘Mua ngay’, ‘woocommerce’ );
}
// To change add to cart text on product archives(Collection) page
add_filter( ‘woocommerce_product_add_to_cart_text’, ‘woocommerce_custom_product_add_to_cart_text’ );
function woocommerce_custom_product_add_to_cart_text() {
return __( ‘Mua ngay’, ‘woocommerce’ );

Leave a Reply

Your email address will not be published. Required fields are marked *