Hướng dẫn custom woocommerce phần 2
Saturday, January 9, 2016 22:27
% of readers think this story is Fact. Add your two cents.
Mời anh chị xem hướng dẫn custom woocommerce phần 2
Dưới đây là tóm tắt phần 2 này
- Fix lại sidebar trang shop trong woocommerce
Di chuyển code dưới đây vào vị trí muốn hiển thị sidebar
do_action( 'woocommerce_sidebar' );
- Remove showing all… trong woocommerce
remove_action("woocommerce_before_shop_loop","woocommerce_result_count",20);
- Di chuyển thanh breadcrumb trong woocommerce
remove_action("woocommerce_before_main_content","woocommerce_breadcrumb",20); add_action("woocommerce_before_shop_loop","woocommerce_breadcrumb",20);
- Di chuyển thanh phân trang (panination) trong woocommerce
remove_action("woocommerce_after_shop_loop","woocommerce_pagination",10); add_action("woocommerce_sidebar","woocommerce_pagination");
2016-01-09 21:26:05
Nguồn: http://fcwordpress.net/huong-dan-custom-woocommerce-phan-2.html