Hi,
and thank you for writing in!
You can easily print a button in Quick View content by using the yith_wcqv_product_summary
action.
So, for example, you can print a button to link to the single product page by adding the following code snippet to your theme functions.php
if ( ! function_exists( 'yith_wcqv_customization_see_more_details' ) ) {
add_action( 'yith_wcqv_product_summary', 'yith_wcqv_customization_see_more_details', 22 );
function yith_wcqv_customization_see_more_details() {
global $product;
if ( $product ) {
$url = get_permalink( $product->get_id() );
echo '<a class="button" href="' . esc_url( $url ) . '">' . __( 'See more details' ) . '</a>';
}
}
}
Please try this solution and let us know if everything works fine!