get_id() ) . '">' . esc_html ( get_option( 'yith-wcqv-button-label' ) ) . ''; } } if ( ! function_exists( 'ayyash_quick_view_button' ) ) { /** * Quick View Button * * @return void */ function ayyash_quick_view_button() { remove_action( 'woocommerce_after_shop_loop_item', array( YITH_WCQV_Frontend(), 'yith_add_quick_view_button' ), 15 ); add_action( 'ayyash_shop_actions', array( YITH_WCQV_Frontend(), 'yith_add_quick_view_button' ), 10 ); } } if ( ! function_exists( 'ayyash_handle_quick_view_button_hooks' ) ) { function ayyash_handle_quick_view_button_hooks() { if ( ! class_exists( 'YITH_WCQV' ) ) { return; } // remove quick view button after product Name remove_action( 'yith_wcwl_table_after_product_name', array( YITH_WCQV_Frontend(), 'add_quick_view_button_wishlist' ), 15 ); // Add Quick View Button before add to cart add_action( 'yith_wcwl_table_product_before_add_to_cart', array( YITH_WCQV_Frontend(), 'add_quick_view_button_wishlist' ), 15); } }