Cách tuỳ biến nút add to cart trong woocommerce
Thursday, August 13, 2015 8:03
% of readers think this story is Fact. Add your two cents.
Trong quá trình custom woocommerce bạn muốn custom cách hiển thị các thông tin của sản phẩm mặc định, trong đó có nút add to cart
Hôm nay tôi sẽ chia sẽ với anh chị như thế nào để chúng ta có thể làm điều này
- Bước 1 chúng ta add class woocommerce vào body
- Bước 2 bỏ đoạn code sau vào vòng lặp, nơi cần show nút add to cart
%s', esc_url( $product->add_to_cart_url() ), $product->id, esc_attr( $product->product_type ), $product->single_add_to_cart_text() ); echo $add_to_cart_link; ?>
- Thay đổi text add to cart
add_filter( 'woocommerce_product_add_to_cart_text', 'woo_archive_custom_cart_button_text' ); // 2.1 + function woo_archive_custom_cart_button_text() { return __( 'Thêm vào giỏ hàng', 'woocommerce' ); }
2015-08-13 07:00:10
Nguồn: http://fcwordpress.net/cach-tuy-bien-nut-add-to-cart-trong-woocommerce.html