Hướng dẫn custom woocommerce – phần 7
Wednesday, February 3, 2016 9:15
% of readers think this story is Fact. Add your two cents.
Mời anh chị xem video:
Một số code liên quan đến video:
- Thay đổi text add to cart trang single
function change_text_addtocart_single($text){ return 'Mua ngay'; } add_filter('woocommerce_product_single_add_to_cart_text','change_text_addtocart_single');
- Di chuyển price tới dưới images
remove_action("woocommerce_single_product_summary","woocommerce_template_single_price",10); add_action("woocommerce_before_single_product_summary","woocommerce_template_single_price",21);
- Di chuyển add to cart xuống dưới image và price
remove_action("woocommerce_single_product_summary","woocommerce_template_single_add_to_cart",30); add_action("woocommerce_before_single_product_summary","woocommerce_template_single_add_to_cart",22);
- Remove label sale flash
remove_action("woocommerce_before_single_product_summary","woocommerce_show_product_sale_flash",10);
2016-02-03 08:13:03
Nguồn: http://fcwordpress.net/huong-dan-custom-woocommerce-phan-7.html