Remove Quick View, Add to Wish List, etc
-
Hi,
I am trying to find a way to remove the three button that pop up when I hoover the product – quick view, add to wish list, add to basket. I have tried with the following code but it only removed the icons, text and the feature itself are still there.
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 );
}
}The page I need help with: [log in to see the link]
- The topic ‘Remove Quick View, Add to Wish List, etc’ is closed to new replies.