Trong nhiều trường hợp bạn không thích hiển thị sidebar trong trang chi tiết sản phẩm thì bạn nào thế nào?

Dưới đây là giải pháp cho bạn ….
hãy chèn đoạn code bên dưới vào functions.php trong theme của bạn
Bỏ sidebar trong phần chi tiết sản phẩm
1
2
3
| add_action( 'wp' , create_function( "" , "if (is_archive(array('product'))) remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10);" ) ); remove_action( 'woocommerce_sidebar' , 'woocommerce_get_sidebar' , 10); |
Bỏ sidebar ở mọi nơi trong web
1
2
3
| add_action( 'wp' , create_function( "" , "if (is_singular(array('product'))) remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10);" ) ); remove_action( 'woocommerce_sidebar' , 'woocommerce_get_sidebar' , 10); |
Chúc các bạn thành công^^
Không có nhận xét nào:
Write nhận xét