Title: Disabling Quick View
Last modified: February 21, 2019

---

# Disabling Quick View

 *  Resolved [ggus03](https://wordpress.org/support/users/ggus03/)
 * (@ggus03)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/disabling-quick-view/)
 * Is it possible to disable the Quick View modal and have it link to the product
   page?

Viewing 1 replies (of 1 total)

 *  [Mikaela](https://wordpress.org/support/users/mikaelabc/)
 * (@mikaelabc)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/disabling-quick-view/#post-11263894)
 * Hey [@ggus03](https://wordpress.org/support/users/ggus03/),
 * I saw you already resolved this via the BigCommerce Community, but I just wanted
   to make sure to post the solution here for visibility.
 * Creating your own template and removing $quick_view modal in the code won’t work.
   You’ll need to apply a filter:
 *     ```
       add_filter( 'bigcommerce/template/wrapper/attributes', function( $attributes, $template ) {
         if ( $template === 'components/products/product-card.php' ) {
           unset( $attributes[ 'data-js' ] );
         }
         return $attributes;
       }, 10, 2 );
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Disabling Quick View’ is closed to new replies.

 * ![](https://ps.w.org/bigcommerce/assets/icon-256x256.png?rev=2860929)
 * [BigCommerce For WordPress](https://wordpress.org/plugins/bigcommerce/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/bigcommerce/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/bigcommerce/)
 * [Active Topics](https://wordpress.org/support/plugin/bigcommerce/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/bigcommerce/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/bigcommerce/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Mikaela](https://wordpress.org/support/users/mikaelabc/)
 * Last activity: [7 years, 3 months ago](https://wordpress.org/support/topic/disabling-quick-view/#post-11263894)
 * Status: resolved