• Resolved truex

    (@truex)


    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]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter truex

    (@truex)

    anyone?

    Thread Starter truex

    (@truex)

    I managed to remove them by myself. Add the following piece of code to the theme css file and it does the magic:

    .product_list_widget .quick-view{
    display: none;
    }
    .product-interactions {
    display: none;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove Quick View, Add to Wish List, etc’ is closed to new replies.