- shares
- Facebook Messenger
- Gmail
- Viber
- Skype
Nếu bạn muốn loại bỏ xóa sản phẩm liên quan trong woocommerce, không cho hiển thị ở trang chi tiết sản phẩm, thì copy đoạn code sau vào theme functions.php
<?php /* * wc_remove_related_products * * Clear the query arguments for related products so none show. * Add this code to your theme functions.php file. */ function wc_remove_related_products( $args ) { return array(); } add_filter('woocommerce_related_products_args','wc_remove_related_products', 10);
Để nhận được bài viết mới vui lòng đăng ký kênh kiến thức WordPress từ A-Z ở Form bên dưới. Bạn cũng có thể nhận được sự trợ giúp trên Twitter và Facebook
- shares
- Facebook Messenger
- Gmail
- Viber
- Skype