我正在尝试找到一种方法来删除我在产品上徘徊时弹出的三个按钮 - 快速查看,添加愿望列表,添加到篮子中。我已经尝试了以下代码,但它仅删除了图标,文本和功能本身。
CSS:
.related.products .yith-wcqv-button {
display: none;
}
php:
add_action( ‘template_redirect’, ‘yith_wcqv_remove_from_wishlist’ );
function yith_wcqv_remove_from_wishlist(){
if( function_exists( ‘YITH_WCQV_Frontend’ ) && defined(‘YITH_WCQV_FREE_INIT’) ) {
remove_action( ‘yith_wcwl_table_after_product_name’, array( YITH_WCQV_Frontend(), ‘yith_add_quick_view_button’ ), 15 );
}
}
我需要帮助的页面:http://poshwish.co.uk
我设法自己删除了它们。将以下代码添加到主题CSS文件中,并执行魔术:
.product_list_widget .quick-view{
display: none;
}
.product-interactions {
display: none;
}
我使用相同的自定义菜单解决了它:
yourwebsite.com/wp-admin->外观 - >自定义 - >WooCommerce->产品循环
并禁用所有特色图标