---
title: "How to Add a ‘View More Details’ Link to Quickview"
source: "https://docs.nexcess.com/software/kadence/iconic/quickview/add-a-product-link-to-quickview/"
description: "Coming soon: Iconic Quickview is becoming part of Kadence Shop Kit. You may see both names used while we update the product, documentation, and customer experie…"
vertical: "Software"
area: "Quickview"
date: "2021-03-25"
last_modified: "2026-08-12"
---

# How to Add a ‘View More Details’ Link to Quickview

**Coming soon:** Iconic Quickview is becoming part of Kadence Shop Kit. You may see both names used while we update the product, documentation, and customer experience.

If you want to add a button or link to your Quickview popup that allows customers to go directly to the single product page, you can do so with this guide.

![Add A Product Link To Quickview](https://docs.nexcess.com/wp-content/uploads/2026/06/Add-A-Product-Link-To-Quickview-1024x782-1.png)**To do this, add the following code to your website’s functions file, or use the [Code Snippets](https://en-gb.wordpress.org/plugins/code-snippets/) plugin:**

***Note:** There are plenty of [hooks you can use](https://docs.nexcess.com/software/kadence/iconic/quickview/available-hooks/) to customize this further.*

```
function iconic_quickview_summary( $product_id, $post, $product ) {
    if( ! empty( $_POST['variation_id'] ) ) {
        $product = wc_get_product( $_POST['variation_id'] );
    }
    printf( '<a href="%s" class="button">%s</a>', $product->get_permalink(), __( 'View Product', 'iconic' ) );
}
add_action( 'jck_qv_summary', 'iconic_quickview_summary', 100, 3 );
```
