Category : Plugin Woocommerce

Thêm đoạn sau vào funtion /* * Thay đổi text nút thêm vào giỏ hàng => Mua ngay ở danh mục */ add_filter( ‘woocommerce_product_add_to_cart_text’, ‘woo_custom_cart_button_text’ ); // 2.1 + add_filter( ‘woocommerce_product_single_add_to_cart_text’, ‘woo_custom_cart_button_text’ ); function woo_custom_cart_button_text() { return __( ‘Mua ngay’, ‘woocommerce&#..

Read more